ASP.NET and Access Databases

156 Views Asked by At

I have an ASP.NET web application that accesses an Access Database. The Access Database is only for testing purposes. I have hard coded the connection string which is correct, yet the application throws an error saying:

C:\MyDb\Db.mdb is not a valid path. Make sure that the path name is spelled correctly and that you are connected to the server on which the file resides.

My Connection String is:

Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\MyDb\Db.mdb;

This is the correct path, why can't the developement server see the database? Do I have to configure it?

Please Help

3

There are 3 best solutions below

0
On

See 'Not a valid path' Error when Using Access Data Source, I think it may help.

0
On

Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\MyDb\Db.mdb;Persist Security Info=True

3
On

Are you using IIS? If so, does the IIS server have access to this file directory?