I am trying to connect a MS Access database from classic ASP script.
I am using 64bit Windows 7 OS running IIS7
I have following piece of code:
Dim Connection
Set Connection = Server.CreateObject("ADODB.Connection")
Response.Write("object created...")
conn.Open "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" & Server.MapPath("D://Somnath//ExtraLogistics//Source//ZipDB.mdb") & ";"
Response.Write("connected...")
but I am getting this error The website cannot display the page
in browser while running application on IIS.
Please help me to connect to the Access database from my IIS.