我正在 asp.net 中的一个项目中工作,我将一些文件存储在一个目录中,比如 temp。我想只向登录的用户授予对该文件夹及其内容的访问权限,否则它应该显示拒绝访问。
我努力了
<system.web>
<authentication mode="Forms">
<forms loginUrl="Default.aspx" defaultUrl="Default.aspx" ></forms>
</authentication>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
<location path="temp">
<system.web>
<authorization>
<deny users="?"/>
</authorization>
</system.web>
</location>
但它不起作用。
我究竟做错了什么 ?正确的方法应该是什么?