I am getting "ADODB.Connection error '800a0e7a'" error when I run the following classic ASP code.
Db = "db.mdb"
ConnStr = "Provider = Microsoft.Jet.OLEDB.4.0;Data Source = " & Server.MapPath(db)
set conn=server.createobject("ADODB.CONNECTION")
conn.open Connstr
So..I googled the error code. The cause is that there is no 64bit Microsoft.Jet.OLEDB.4.0. I googled for a solution, but I only found how to resolve this error with visual studio.
How do I configure classic ASP in 64bit windows 7 (running IIS 7.5) to run the above code?