web.config is actually a very well known configuration file for people in the .NET world.
Asp.net in particular is tightly integrated with IIS. The web.config is actually an IIS config and by including one in your site you're simply just overriding the server's copy of that config file. So if you're using Azure you won't see this file in your wwwroot directory. You just need to add it.
web.config is actually a very well known configuration file for people in the .NET world.
Asp.net in particular is tightly integrated with IIS. The web.config is actually an IIS config and by including one in your site you're simply just overriding the server's copy of that config file. So if you're using Azure you won't see this file in your wwwroot directory. You just need to add it.