Hello all,
Today I just got this error "Unspecified error" which I hadn't get before and I honestly don't remember the last time I editted this database_conn.asp file at all.
Here is the code of the page
Today I just got this error "Unspecified error" which I hadn't get before and I honestly don't remember the last time I editted this database_conn.asp file at all.
Here is the code of the page
Code:
connStr = "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & Server.MapPath("/dbaccess/testing.mdb")
Set objConn = Server.CreateObject("ADODB.Connection")
objConn.mode = 3 ' adModeReadWrite
objConn.Open ConnStr
if err.Number <> 0 then
response.write "Error Number: " & err.Number & "<BR>"
response.write "Error Page: " & Request.ServerVariables("PATH_INFO") & "<BR>"
response.write "Error Description: " & err.Description
end if
on error goto 0