views:

60

answers:

3

Why do we need a web config file

A: 

In short...to store configuration settings for your web application. See Wiki Article for more details.

James
A: 

web.config is the web equivalent of app.config. Technical auto generated settings are stored here, but in addition to this you can store custom application settings here too.

JL
A: 

To configure your web. Note that web.config is optional, so it's only needed if you need it.

Max Toro