Hello,
That is not good way of specifying the database path. It indicates physical path. If you access from any other system not from the hosted system, it will not work. Coz, the other system cannot identify the location and file. It searches in the current system if you specify physical path.
Store the mdb file anywhere in the virtual folder. Better have db folder and store. Then follow path rules.
Ex: myasp is virtual folder
DB is the folder in myasp and have mdb file.
scripts is the folder to have asp scripts
form the connection string like...
conn.provider="Microsoft.Jet.oledb.4.0"
conn.open server.mappath("../db/asp.mdb")
---------
Rajani
|