I am creating my first asp web integrated page. I obviously don't know what I am doing. Although I used to consider myself a fairly knowledgeable programmer. I am using FrontPage 2002 and Access 2000. I am on a Windows XP Professional machine with IIS installed. I created my Form in FP and then had it create the global.asa on its own based on the name of the db and tables that I provided. On my asp page I have the following code:
<%@ Language=VBScript %>
<% Option Explicit
Dim objConn
Set objConn = Server.Createobject("ADODB.Connection"
objConn.ConnectionString = "DRIVER={Microsoft Access Driver (*.mdb)};" & _
"DBQ=URL=fpdb/databasename.mdb"
objConn.Open
%>
which came directly out of "Teach yourself ASP 3.0"
I do have my db named "databasename.mdb." I have searched this forum as well as several other sites and no matter what changes I make, the browser can't seem to get passed the objConn.open line. I get the error message:
HTTP 500.100 - Internal Server Error - ASP error
Internet Information Services
Error Type:
Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
[Microsoft][ODBC Microsoft Access Driver]General error Unable to open registry key 'Temporary (volatile) Jet DSN for process 0xac8 Thread 0xaf4 DBC 0x1090064 Jet'.
/webfolder/checkstatus2.asp, line 8
Line 8 is in this case the objConn.Open line. Please give me some guidance as I have NO CLUE what I am doing.
<%@ Language=VBScript %>
<% Option Explicit
Dim objConn
Set objConn = Server.Createobject("ADODB.Connection"

objConn.ConnectionString = "DRIVER={Microsoft Access Driver (*.mdb)};" & _
"DBQ=URL=fpdb/databasename.mdb"
objConn.Open
%>
which came directly out of "Teach yourself ASP 3.0"
I do have my db named "databasename.mdb." I have searched this forum as well as several other sites and no matter what changes I make, the browser can't seem to get passed the objConn.open line. I get the error message:
HTTP 500.100 - Internal Server Error - ASP error
Internet Information Services
Error Type:
Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
[Microsoft][ODBC Microsoft Access Driver]General error Unable to open registry key 'Temporary (volatile) Jet DSN for process 0xac8 Thread 0xaf4 DBC 0x1090064 Jet'.
/webfolder/checkstatus2.asp, line 8
Line 8 is in this case the objConn.Open line. Please give me some guidance as I have NO CLUE what I am doing.