Hi there,
The Data Source needs a physical path, not a Web path. So, you'll need something like this:
Data Source=C:\Database\BegASPFIles\Movie2000.mdb;
If you don't know where he physical file is located (when you host your site with an ISP for example), but you *do* know it's located in a folder called Databases in the root of your site for example, try this for the connection string:
objConn.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=" & Server.MapPath("/Databases/Movie2000.mdb") & ";" & _
"Persist Security Info=False"
This will return a path like c:\inetpub\wwwroot\YourSite\Databases\Movie2000.md b which is a valid path for the DataSource.
HtH,
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.
|