Anyone have an example of connecting to a non-DSN Access DB that is password protected, through ASP pages? Here is what I have but I get an error, "Could not find installable ISAM".
<%
Dim cConnectStr
Set DBConn = Server.CreateObject ("ADODB.Connection"
DBConn.Provider = "Microsoft.Jet.OLEDB.4.0"
cConnectStr="Data Source=logon.mdb;psword=admin"
DBConn.Open cConnectStr
.
.
.
<%
Dim cConnectStr
Set DBConn = Server.CreateObject ("ADODB.Connection"
DBConn.Provider = "Microsoft.Jet.OLEDB.4.0"
cConnectStr="Data Source=logon.mdb;psword=admin"
DBConn.Open cConnectStr
.
.
.