Reputation: 475
I migrated a website written in classic asp to windows server 2008 RS/ IIS 7.5. I made all the changes to run classic asp on the server and everything works fine with *.asp pages, except when it pertains to *.asp pages trying to access an *.mdb file.
The error I am receiving:
Microsoft OLE DB Provider for ODBC Drivers error '80004005'
[Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified
/MyChildFolder/Default.asp, line 9
As I said, this code worked fine just moments ago on a Windows 2003 Server/ IIS 6.0.
Upvotes: 0
Views: 711
Reputation: 2806
Very simple to solve this:
You should be good to go.
Upvotes: 3
Reputation: 151
Windows 2008 has 64bit ODBC that doesn't work with ASP as ASP uses 32bit or you should set this up to.
You can access 32 ODBC here C:\Windows\SysWOW64\odbcad32.exe
Upvotes: 0