D
Dan
Hi,
My global.asax contains this:
Sub Session_Start(ByVal sender As Object, ByVal e As EventArgs)
Dim oConnection As New OleDbConnection()
oConnection.ConnectionString =
System.Configuration.ConfigurationManager.AppSettings("newres")
oConnection.Open()
Session("oConnection") = oConnection
End Sub
My web.config contains this:
<configuration>
<appSettings>
<add key="newres"
value="Provider=Microsoft.Jet.OLEDB.4.0;DataSource=c:\mydb.mdb" />
</appSettings>
</configuration>
When starting the application, i get:
"Could not find installable ISAM".
Thanks for help.
Dan
My global.asax contains this:
Sub Session_Start(ByVal sender As Object, ByVal e As EventArgs)
Dim oConnection As New OleDbConnection()
oConnection.ConnectionString =
System.Configuration.ConfigurationManager.AppSettings("newres")
oConnection.Open()
Session("oConnection") = oConnection
End Sub
My web.config contains this:
<configuration>
<appSettings>
<add key="newres"
value="Provider=Microsoft.Jet.OLEDB.4.0;DataSource=c:\mydb.mdb" />
</appSettings>
</configuration>
When starting the application, i get:
"Could not find installable ISAM".
Thanks for help.
Dan