所以,
很长一段时间没有在ASP.NET中做任何事情,如果用户没有登录,我就限制了一个特定的页面。我已经完成了这一千次,并且不知道为什么它不起作用。
根:
file:web.config。
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0"/>
<authentication mode="Forms">
<forms loginUrl="restricted.aspx"/>
</authentication>
</system.web>
</configuration>
在包含受限文件的文件夹中: file:web2.config
<configuration>
<system.web>
<authorization>
<deny users="?" />
</authorization>
</system.web>
</configuration>`
任何想法都是我缺少的?
干杯。