Configuration - InheritInChildApplication

<!--Avoid web.config inheritance in child web application using inheritInChildApplications--> <location path="." inheritInChildApplications="false"> <connectionStrings> </connectionStrings> </location> OR <!-- Disable inheritance for the system.web section --> <location path="." inheritInChildApplications="false"> <system.web> <webParts> </webParts> <membership> </membership> <compilation> </compilation> </system.web>
Suppose if there are multiple applications hosted with different versions of .NET and you don't want the parent configuration to meddle with the child configurations then simply wrap the given section i.e., "localization" above the tags that has caused error(s),

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.