views:

55

answers:

1

I'm really interested in gaining an in-depth understanding of the format and structure of the web.config file for ASP.NET web development. I'd like to know if there's some really easy to comprehend material (apart from the MSDN docs) which can provide me a ground-up understanding of the web.config file and its different sections.

Any suggestions?

+3  A: 

This is a really good article:

It takes the magic out of the Web.Config... which after all is just an XML file.

Conn.test.Config

Conn.test.Config

App.test.Config

App.live.Config

I also love showing people that the fancy "website configuration" under the ASP.Net Tab in IIS is just parsing an XML file and there's nothing fancy about it.

Atømix