但是我在使用過程中,發現針對角色的控制並不是那麼容易,通過在網上查找資料,終於解決這個問題。下面將主要的注意事項列出來。
1、配置文件中,角色的allow項要放在deny項的前面,users要配置為*,而不是?
代碼
復制代碼 代碼如下:
<location path="Doctors">
<system.web>
<authorization>
<allow roles="doctors"/> //這個在前
<deny users="*"/>
</authorization>
</system.web>
</location>
2、將角色寫入票據
代碼
復制代碼 代碼如下:
string role="doctors";
FormsAuthenticationTicket Ticket = new FormsAuthenticationTicket(1, username, DateTime.Now, DateTime.Now.AddMinutes(30), false, role, "/");//建立身份驗證票對象
string HashTicket = FormsAuthentication.Encrypt(Ticket);//加密序列化驗證票為字符串
HttpCookie UserCookie = new HttpCookie(FormsAuthentication.FormsCookieName, HashTicket);
//生成Cookie
Response.Cookies.Add(UserCookie);//輸出Cookie
Response.Redirect("");//重定向到用戶申請的初始頁面
3、身份票據並沒有直接提供對role的直接支持,需要在Application_AuthenticateRequest中對role進行解析
代碼
復制代碼 代碼如下:
string[] roles = authTicket.UserData.Split(new char[] { '|' });
FormsIdentity id = new FormsIdentity(authTicket);
System.Security.Principal.GenericPrincipal principal = new System.Security.Principal.GenericPrincipal(id, roles);
Context.User = principal;
大致弄清這三點,就可以了。
代碼打包