Mhtml
09-24-2002, 02:05 AM
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 0x680 Thread 0x6e4 DBC 0x681c024 Jet'.
/projectodyssey/linkdelete.asp, line 10
here is my code:
<%
dim Lname, Lurl, Ldesc
Lname = Request.Form("linkname")
Lurl = Request.Form("linkurl")
Ldesc = Request.Form("Linkdesc")
Lid = "http://" & Request.Form("linknumber")
'This is the code used to make a connection to our database
Set ConnSQL = Server.CreateObject("ADODB.Connection")
path = Server.MapPath("db/odyssey.mdb")
ConnSQL.Open "Driver={Microsoft Access Driver (*.mdb)}; DBQ=" & path
sqlDelete = "DELETE FROM Links WHERE LinkUrl = '"&Lid&"' "
ConnSql.Execute(sqlDelete)
%>
<%
ConnSQL.Close
Set ConnSQL = nothing
Set RS = nothing
%>
<%response.Redirect("links.asp")%>
It was working before, and my link add script (http://24.226.62.28/projectodyssey/links.asp) works on the same conn string and is working fine..
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 0x680 Thread 0x6e4 DBC 0x681c024 Jet'.
/projectodyssey/linkdelete.asp, line 10
here is my code:
<%
dim Lname, Lurl, Ldesc
Lname = Request.Form("linkname")
Lurl = Request.Form("linkurl")
Ldesc = Request.Form("Linkdesc")
Lid = "http://" & Request.Form("linknumber")
'This is the code used to make a connection to our database
Set ConnSQL = Server.CreateObject("ADODB.Connection")
path = Server.MapPath("db/odyssey.mdb")
ConnSQL.Open "Driver={Microsoft Access Driver (*.mdb)}; DBQ=" & path
sqlDelete = "DELETE FROM Links WHERE LinkUrl = '"&Lid&"' "
ConnSql.Execute(sqlDelete)
%>
<%
ConnSQL.Close
Set ConnSQL = nothing
Set RS = nothing
%>
<%response.Redirect("links.asp")%>
It was working before, and my link add script (http://24.226.62.28/projectodyssey/links.asp) works on the same conn string and is working fine..