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>