Mobile app version of vmapp.org
Login or Join
Nimeshi995

: I would classify it as a serverfault question. But since you asked my two cents. You could set this in your web.config <location path="." inheritInChildApplications="false"> <system.web>

@Nimeshi995

I would classify it as a serverfault question. But since you asked my two cents.

You could set this in your web.config

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


What it does?


inheritInChildApplications

Optional Boolean attribute.

Specifies whether configuration settings that are specific to a
certain location (such as the root directory of a Web site) are
inherited by applications that exist in subdirectories.

The default is True.


More Info: How to disable web.config Inheritance for Child Applications in Subfolders in ASP.NET?

10% popularity Vote Up Vote Down


Login to follow query

More posts by @Nimeshi995

0 Comments

Sorted by latest first Latest Oldest Best

Back to top | Use Dark Theme