91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

ASP.NET如何實現Forms身份認證

發布時間:2021-08-18 15:14:43 來源:億速云 閱讀:217 作者:小新 欄目:開發技術

這篇文章給大家分享的是有關ASP.NET如何實現Forms身份認證的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

asp.net程序開發,用戶根據角色訪問對應頁面以及功能。

項目結構如下圖:

ASP.NET如何實現Forms身份認證

根目錄 Web.config 代碼:

<?xml version="1.0" encoding="utf-8"?>
<!--
 有關如何配置 ASP.NET 應用程序的詳細消息,請訪問
 http://go.microsoft.com/fwlink/?LinkId=169433
 -->
<configuration>
  <system.web>
    <compilation debug="true" targetFramework="4.0" />
    <authentication mode="Forms">
     <forms loginUrl="login.aspx"></forms>
    </authentication>
    <!--<authorization>
     <allow users="*"></allow>
    </authorization>-->
  </system.web>
</configuration>

admin文件夾中 Web.config 代碼:

<?xml version="1.0"?>
<configuration>
 <system.web>
 <authorization>
 <allow roles="admin" />
 <deny users="*"/>
 </authorization>
 </system.web>
</configuration>

teacher文件夾中 Web.config 代碼:

<?xml version="1.0"?>
<configuration>
 <system.web>
 <authorization>
 <allow roles="teacher" />
 <deny users="*"/>
 </authorization>
 </system.web>
</configuration>

student文件夾中 Web.config 代碼:

<?xml version="1.0"?>
<configuration>
 <system.web>
 <authorization>
 <allow roles="student" />
 <deny users="*"/>
 </authorization>
 </system.web>
</configuration>

Login.aspx中登錄成功后設置Cookie,設置Cookie代碼:

protected void SetLoginCookie(string username, string roles)
{
System.Web.Security.FormsAuthentication.SetAuthCookie(username, false);
 System.Web.Security.FormsAuthenticationTicket ticket = new FormsAuthenticationTicket(1, username, DateTime.Now, DateTime.Now.AddDays(1), false, roles, "/");
 string hashTicket = FormsAuthentication.Encrypt(ticket);
 HttpCookie userCookie = new HttpCookie(FormsAuthentication.FormsCookieName, hashTicket);
 HttpContext.Current.Response.SetCookie(userCookie);
}

Global.asax 中進行身份驗證:

protected void Application_AuthenticateRequest(object sender, EventArgs e)
{
 HttpApplication app = (HttpApplication)sender;
 HttpContext ctx = app.Context; //獲取本次Http請求的HttpContext對象 
 if (ctx.User != null)
 {
 if (ctx.Request.IsAuthenticated == true) //驗證過的一般用戶才能進行角色驗證 
 {
 System.Web.Security.FormsIdentity fi = (System.Web.Security.FormsIdentity)ctx.User.Identity;
 System.Web.Security.FormsAuthenticationTicket ticket = fi.Ticket; //取得身份驗證票 
 string userData = ticket.UserData;//從UserData中恢復role信息
 string[] roles = userData.Split(','); //將角色數據轉成字符串數組,得到相關的角色信息 
 ctx.User = new System.Security.Principal.GenericPrincipal(fi, roles); //這樣當前用戶就擁有角色信息了
 }
 }
}

感謝各位的閱讀!關于“ASP.NET如何實現Forms身份認證”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

东乌珠穆沁旗| 苗栗市| 武强县| 龙南县| 贡山| 杨浦区| 家居| 克山县| 新安县| 南部县| 湟源县| 隆尧县| 和田县| 仲巴县| 蓝山县| SHOW| 乐至县| 徐闻县| 宁都县| 沂水县| 青铜峡市| 大余县| 任丘市| 温宿县| 化隆| 旬邑县| 怀来县| 古蔺县| 杭锦后旗| 湘潭县| 阳信县| 广昌县| 赣州市| 公安县| 溧水县| 泉州市| 兴化市| 东城区| 五指山市| 区。| 兴安县|