1
如何授權頁面僅登錄處於特定角色的用戶?我沒有使用MVC,我不能使用[Authorize(Roles =「Admin」)]屬性。如何在Web窗體中授權ASP.NET身份的角色?
如何授權頁面僅登錄處於特定角色的用戶?我沒有使用MVC,我不能使用[Authorize(Roles =「Admin」)]屬性。如何在Web窗體中授權ASP.NET身份的角色?
你會使用Web.config
配置訪問:
<configuration>
<!-- Allow only Administrators to visit RoleBasedAuthorization.aspx -->
<location path="RoleBasedAuthorization.aspx">
<system.web>
<authorization>
<allow roles="Administrators"/>
<deny users="*" />
</authorization>
</system.web>
</location>
</configuration>
如何創建角色並檢查用戶在角色? – coto2