Add this under the <configuration> of your web.config file:
<appSettings>
<add key="CONNSTRING" value="
your connection string" />
</appSettings>
Then you can access within the application like this:
ConfigurationSettings.AppSettings.Item("CONNSTRING ")
Is this what you are looking for?
Peter
-------------------------
Work smarter, not harder