I'm having issues with an ASP page that needs to connect to Access. I am getting the following error message:
Provider cannot be found. It may not be properly installed.
I have researched and googled the solution but it does not work. I have tried to change the application pool settings to Classic ASP and allow to use 32 bit applications, but when I switch it from 64 bit to 32 bit, the application pool automatically stops and I get an 503 error and the webpage does not show up. If I switch it back to 64 bit I get my original error.
Here is the connection string:
set conn=Server.CreateObject("ADODB.Connection")
conn.provider="Microsoft.Jet.OLEDB.4.0;"
conn.open server.mappath("databases/Phone_Directory.mdb")