我正在使用 ASP.NET,我希望能够将用户从 web 配置重定向到另一个页面。
我有许多限制,例如:
<location path="Structures.aspx">
<system.web>
<authorization>
<allow roles="Admin"/>
<deny users="*" />
</authorization>
</system.web>
</location>
如果我将用户重定向到某个页面,那就太好了。我看到了 这篇文章,但这不是我想要的。
我需要在 web.config 中而不是在后面的代码中进行。谢谢!