Call Savance Workplace Call Us: (248) 478-2555

Support Suite

User Login



 

Main

Knowledgebase: Technical
Have multiple .NET websites on the same server in the web.config
Posted by Savance on 05 February 2010 12:19 AM

Multiple Website in Web.config

Here is some information on ASP.NET Web Application:
http://aspdotnetfaq.com/Faq/how-to-disable-web-config-inheritance-for-child-applications-in-subfolders-in-asp-net.aspx

Here is how to use this in practice:

<location path="." inheritInChildApplications="false">
<system.web>
...

</system.web>
</location>