Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Resources for understanding web.config essentials

What are the best resources for understanding what's possible (or not possible) to achieve using web.config settings.

Wikipedia is really short on answers at this time and many of the sites I've browsed to only have one or two configurations referenced and explained.

like image 396
Joshua Avatar asked Aug 21 '09 00:08

Joshua


People also ask

Where can I find Web config?

The Web. Config file is used to configure Oracle Web Application functionality. This file is typically installed in the c:\Inetput\wwwroot\WebApp directory.

What is the need for Web config file?

The web. config is a file that is read by IIS and the ASP.NET Core Module to configure an app hosted with IIS.

Is Web config an XML file?

The Web. config file must be a well-formed XML document and must have a format similar to the %SystemRoot%\Microsoft.NET\Framework\%VersionNumber%\CONFIG\Machine.

What is the difference between Web config and app config?

The web. config file is required for ASP.NET webpages. The app. config file is optional in an application and doesn't have to be used when writing desktop applications.


1 Answers

Well, I guess you need this:

ASP.Net configuration. http://msdn.microsoft.com/en-us/library/aa719558(VS.71).aspx

Understand how machine.config and web.config settings are used by .Net

and this:

The schema http://msdn.microsoft.com/en-us/library/b5ysx397(VS.71).aspx

essentially all possible configuration sections listed. Click on each of them to learn more.

like image 185
DmitryK Avatar answered Sep 24 '22 04:09

DmitryK