<connectionStrings file="devsettings.config">

  • Thread starter Thread starter Morten71
  • Start date Start date
M

Morten71

in web.config in my dot net 1.1 web projects I have my connection
strings in the appSettings section. I usually overruled values by
referencing an external config file holding my devsettings like this:

<appSettings file="devsettings.config"/>

I can't find any info on how to do the same in my dot net 2.0 web
projects using the <connectionStrings> in the web.config file.

<connectionStrings file="devsettings.config"> produces an
"Unrecognized attribute 'file'" exception.
 
Back
Top