How to apply security on a folder using web.config

2020-02-16 04:15发布

问题:

I have folder on which i want to apply security like the current user who is using the site, can access that folder but if he is not currently logged in then he cannot see the content of that folder or files of that folder. I know we can do it in web.config file but i dont know how. Please help me. Thanks in advance.

回答1:

If I have understood the question...

You can use location elements in the web.config file, there is a lot of information on the web about that - this gives you a start: HOW TO: Control Authorization Permissions in an ASP.NET Application

You basically have elements like this:

<configuration>
    <location path="subdir1">
        <system.web>
            <authorization>
                <allow users ="*" />
            </authorization>
        </system.web>
    </location>
</configuration>

That is saying allow all users to the subdir1, you have a deny element too - information here: authorization Element



回答2:

Create a separate web.config file with permission inside the folder that you need security.

Also have a look at this article about Control Authorization Permissions in an ASP.NET Application

eg.

 <system.web>
            <authorization>
                <deny users="?" />                
            </authorization>
</system.web>