As you said your code is working without any problem.
Have your tried any database connection method other than OLE DB. Specifically have you tried the following:
(1) ODBC based method (Data Source Name - DSN method)
(2) DSN Less connection method
Comment the following line in your code
Code:
sConnString="PROVIDER=Microsoft.Jet.OLEDB.4.0;" & "Data Source=" & Server.MapPath("users.mdb")
Insert this code just after the above line in your source code - This one is a DSN less method. Just want to know whether this one works for you
Code:
sConnString="Driver={Microsoft Access Driver (*.mdb)}; DBQ=" & Server.MapPath("users.mdb")& ";"
save the files and try it
Bookmarks