所以,
很长一段时间没有在 ASP.NET 中做任何事情,如果用户没有登录,我会限制特定页面。我已经这样做了一千次,不知道为什么它不起作用。
根:
文件: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>`
有什么想法是我想念的吗?
干杯。