-
大小: 13.46MB文件類型: .zip金幣: 1下載: 0 次發布日期: 2023-07-31
- 語言: C#
- 標簽: ASP.NETMVC4??Froms??
資源簡介
一直對asp.net最常用的Froms身份驗證很疑惑,通過網上查資料發現都是寫講解,很少有源代碼提供的,所以自己寫了Demo希望可以幫助跟我有一樣疑惑的人。
本項目采用VS2013創建。
代碼片段和文件信息
using?System;
using?System.Collections.Generic;
using?System.Linq;
using?System.Web;
using?System.Web.Http;
using?System.Web.Mvc;
using?System.Web.Optimization;
using?System.Web.Routing;
using?System.Web.Security;
namespace?MvcObj
{
????//?注意:?有關啟用?IIS6?或?IIS7?經典模式的說明,
????//?請訪問?http://go.microsoft.com/?linkId=9394801
????public?class?MvcApplication?:?System.Web.HttpApplication
????{
????????protected?void?Application_Start()
????????{
????????????AreaRegistration.RegisterAllAreas();
????????????WebApiConfig.Register(GlobalConfiguration.Configuration);
????????????FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
????????????RouteConfig.RegisterRoutes(RouteTable.Routes);
????????????BundleConfig.RegisterBundles(BundleTable.Bundles);
????????}
????????protected?void?Application_AuthenticateRequest(object?sender?EventArgs?e)
????????{
????????????//判斷正在請求頁的用戶身份驗證信息時候為空
????????????if?(HttpContext.Current.User?!=?null)
????????????{
????????????????//判斷用戶是否已經進行了身份驗證
????????????????if?(HttpContext.Current.User.Identity.IsAuthenticated)
????????????????{
????????????????????//獲得進行了Forms身份驗證的用戶標識
????????????????????FormsIdentity?UserIdent?=?(FormsIdentity)(HttpContext.Current.User.Identity);
????????????????????//從身份驗證票中獲得用戶數據
????????????????????string?UserData?=?UserIdent.Ticket.UserData;
????????????????????//分割用戶數據得到的用戶角色數組
????????????????????string[]?roles?=?UserData.Split(‘‘);
????????????????????//從用戶標識和角色組初始化GenericPrincipal類
????????????????????HttpContext.Current.User?=?new?System.Security.Principal.GenericPrincipal(UserIdent?roles);
????????????????}
????????????}
????????}
????}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件?????????987??2015-01-08?10:42??MvcObj\MvcObj.sln
?????文件???????94208??2015-01-09?10:21??MvcObj\MvcObj.v12.suo
?????目錄???????????0??2015-01-08?17:26??MvcObj\MvcObj\
?????目錄???????????0??2015-01-08?10:42??MvcObj\MvcObj\App_Data\
?????目錄???????????0??2015-01-08?11:31??MvcObj\MvcObj\App_Start\
?????文件????????2166??2015-01-08?11:31??MvcObj\MvcObj\App_Start\BundleConfig.cs
?????文件?????????272??2015-01-08?10:42??MvcObj\MvcObj\App_Start\FilterConfig.cs
?????文件?????????665??2015-01-08?10:46??MvcObj\MvcObj\App_Start\RouteConfig.cs
?????文件?????????475??2015-01-08?10:42??MvcObj\MvcObj\App_Start\WebApiConfig.cs
?????目錄???????????0??2015-01-08?16:49??MvcObj\MvcObj\Areas\
?????目錄???????????0??2015-01-08?16:49??MvcObj\MvcObj\Areas\Admin\
?????文件?????????652??2015-01-08?16:49??MvcObj\MvcObj\Areas\Admin\AdminAreaRegistration.cs
?????目錄???????????0??2015-01-08?16:49??MvcObj\MvcObj\Areas\Admin\Controllers\
?????文件?????????358??2015-01-08?16:49??MvcObj\MvcObj\Areas\Admin\Controllers\HomeController.cs
?????目錄???????????0??2015-01-08?16:49??MvcObj\MvcObj\Areas\Admin\Models\
?????目錄???????????0??2015-01-08?16:49??MvcObj\MvcObj\Areas\Admin\Views\
?????目錄???????????0??2015-01-08?16:50??MvcObj\MvcObj\Areas\Admin\Views\Home\
?????文件??????????90??2015-01-08?16:50??MvcObj\MvcObj\Areas\Admin\Views\Home\Index.cshtml
?????目錄???????????0??2015-01-08?16:49??MvcObj\MvcObj\Areas\Admin\Views\Shared\
?????文件????????2892??2015-01-08?16:49??MvcObj\MvcObj\Areas\Admin\Views\Web.config
?????目錄???????????0??2015-01-08?10:45??MvcObj\MvcObj\Areas\Management\
?????目錄???????????0??2015-01-08?10:46??MvcObj\MvcObj\Areas\Management\Controllers\
?????文件?????????368??2015-01-08?10:46??MvcObj\MvcObj\Areas\Management\Controllers\HomeController.cs
?????文件?????????682??2015-01-08?10:45??MvcObj\MvcObj\Areas\Management\ManagementAreaRegistration.cs
?????目錄???????????0??2015-01-08?10:44??MvcObj\MvcObj\Areas\Management\Models\
?????目錄???????????0??2015-01-08?15:48??MvcObj\MvcObj\Areas\Management\Views\
?????目錄???????????0??2015-01-08?10:47??MvcObj\MvcObj\Areas\Management\Views\Home\
?????文件?????????100??2015-01-08?10:47??MvcObj\MvcObj\Areas\Management\Views\Home\Index.cshtml
?????目錄???????????0??2015-01-08?10:44??MvcObj\MvcObj\Areas\Management\Views\Shared\
?????文件????????2906??2015-01-08?15:48??MvcObj\MvcObj\Areas\Management\Views\Web.config
?????目錄???????????0??2015-01-08?18:24??MvcObj\MvcObj\bin\
............此處省略534個文件信息
評論
共有 條評論