I have been using an ASP script for about a month without any problems. But now I get an error which is: "Server object, ASP 0177 (0x800401F3), Invalid class string , /login_db.asp, line 134
" I have not changed the script in any way since it was working. Can someone please help.
A part of the script with the line where error appears is shown below:
---------------------------------------------------------------
'Open a connection; we use a DSN-less connection
Dim objConn
Dim objRs
Set objConn = Server.CreateObject("ADODB.Connection") <------- Error
objConn.open "DRIVER={Microsoft Access Driver (*.mdb)};DBQ=" & Server.MapPath("bank.mdb")
'create a record set
Set objRs = Server.CreateObject("ADODB.RecordSet")
---------------------------------------------------------------
I am using Win XP, IIS is working properly as other scripts which donot require database connectivity are working allright.
Thanks for the time.