Board index » Web Programming » Big Web.Config
|
nb0512
|
|
nb0512
|
Big Web.Config
Web Programming58
Hello All, I have a ASP.net 2.0 web application where the Web.Config has gone really huge. This creates a lots of maintanence and deployment problems. Is there any way to break the web.config file into multiple file or something like that? Thanks... - |
| David
Registered User |
Fri Sep 22 08:04:38 CDT 2006
Re:Big Web.Config
Curiously, what is "really huge" as far as size?
Also, what's making it a large file? If you have a large amount of AppSettings, you can benefit from moving those values (especially if they change frequently) to a database table. Remember, modifying your web.config will restart your web application--a much more noticable update than simply updating a database table of application settings. -- David Longnecker Web Developer Wichita Public Schools, USD 259 QuoteHello All, - |
| Cowboy
Registered User |
Fri Sep 22 08:14:28 CDT 2006
Re:Big Web.Config
In 2.0 you can have additional configuration files linked to the config
file. I do not have an example readily available, however. If I get a bit more downtime, I will find a link. -- Gregory A. Beamer MVP; MCP: +I, SE, SD, DBA ************************************************* Think outside of the box! ************************************************* "Navnit" <Navnit@discussions.microsoft.com>wrote in message QuoteHello All, - |
| Navnit
Registered User |
Sat Sep 23 01:48:01 CDT 2006
Re:Big Web.Config
Thank Gregory, David, i'll try it out.
Thanks again... "David R. Longnecker" wrote: QuoteHmm, cool. I've never seen this before. |
