J
James Houston
I get the following error message
Microsoft OLE DB Provider for ODBC Drivers error '80004005'
[Microsoft][ODBC Microsoft Access Driver]General error Unable to open
registry key 'Temporary (volatile) Jet DSN for process 0x940 Thread 0xb04
DBC 0x9266f84 Jet'.
/test.asp, line 87
when I try to open test.asp. Here's the code:
<%
dim sLName
dim sZip
dim sCon 'ado connection string
dim adoConn 'ado connection
set adoConn = server.createobject("adodb.connection")
sCon ="DRIVER={Microsoft Access Driver
(*.mdb)};DBQ=http:www.rmconnection.com/CurrentShipped.mdb"
adoconn.open scon
sLName = request.form("LastName")
sZip = request.form("Zip")
response.write "My name is " & sLName & chr(11)
response.write "And I live in " & sZip
%>
I've searched for this error message in the Knowledge Base, and the only
article says to make sure that the security settings on your Temp folder
allow other users to write to it. I've done this, and I still keep getting
the error. Are they referring to settings on the server or the client. I
eventually want our customers to be able to load this page, but I don't see
how that can work if every user has to reset the permissions on his temp
folder, something most people aren't likely to know how to do. any one else
have any experience with this problem? Any help would be greatly
appriciated.
Best,
Jim
Microsoft OLE DB Provider for ODBC Drivers error '80004005'
[Microsoft][ODBC Microsoft Access Driver]General error Unable to open
registry key 'Temporary (volatile) Jet DSN for process 0x940 Thread 0xb04
DBC 0x9266f84 Jet'.
/test.asp, line 87
when I try to open test.asp. Here's the code:
<%
dim sLName
dim sZip
dim sCon 'ado connection string
dim adoConn 'ado connection
set adoConn = server.createobject("adodb.connection")
sCon ="DRIVER={Microsoft Access Driver
(*.mdb)};DBQ=http:www.rmconnection.com/CurrentShipped.mdb"
adoconn.open scon
sLName = request.form("LastName")
sZip = request.form("Zip")
response.write "My name is " & sLName & chr(11)
response.write "And I live in " & sZip
%>
I've searched for this error message in the Knowledge Base, and the only
article says to make sure that the security settings on your Temp folder
allow other users to write to it. I've done this, and I still keep getting
the error. Are they referring to settings on the server or the client. I
eventually want our customers to be able to load this page, but I don't see
how that can work if every user has to reset the permissions on his temp
folder, something most people aren't likely to know how to do. any one else
have any experience with this problem? Any help would be greatly
appriciated.
Best,
Jim