Here is the setting in Web.Config:
<system.web>
<appSettings>
<add key="ConnectionString"
value="Provider=Microsoft.Jet.OLEDB.4.0;Data
Source=C:\Inetpub\wwwroot\di\dancedance.mdb;Persist
Security Info=False"/>
</appSettings>
Here is what worked when the string was a function in
a data.vb file:
Dim myConnection As New
OleDbConnection(fConnectionString)
I would like to use the Web.Config string but I can't
seem to reference it when I'm initializing
"myConnection".