xxxx18一60岁hd中国/日韩女同互慰一区二区/西西人体扒开双腿无遮挡/日韩欧美黄色一级片 - 色护士精品影院www

  • 大小: 13.46MB
    文件類(lèi)型: .zip
    金幣: 1
    下載: 0 次
    發(fā)布日期: 2023-07-31
  • 語(yǔ)言: C#
  • 標(biāo)簽: ASP.NETMVC4??Froms??

資源簡(jiǎn)介

一直對(duì)asp.net最常用的Froms身份驗(yàn)證很疑惑,通過(guò)網(wǎng)上查資料發(fā)現(xiàn)都是寫(xiě)講解,很少有源代碼提供的,所以自己寫(xiě)了Demo希望可以幫助跟我有一樣疑惑的人。 本項(xiàng)目采用VS2013創(chuàng)建。

資源截圖

代碼片段和文件信息

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
{
????//?注意:?有關(guān)啟用?IIS6?或?IIS7?經(jīng)典模式的說(shuō)明,
????//?請(qǐng)?jiān)L問(wèn)?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)
????????{
????????????//判斷正在請(qǐng)求頁(yè)的用戶身份驗(yàn)證信息時(shí)候?yàn)榭?br/>????????????if?(HttpContext.Current.User?!=?null)
????????????{
????????????????//判斷用戶是否已經(jīng)進(jìn)行了身份驗(yàn)證
????????????????if?(HttpContext.Current.User.Identity.IsAuthenticated)
????????????????{
????????????????????//獲得進(jìn)行了Forms身份驗(yàn)證的用戶標(biāo)識(shí)
????????????????????FormsIdentity?UserIdent?=?(FormsIdentity)(HttpContext.Current.User.Identity);

????????????????????//從身份驗(yàn)證票中獲得用戶數(shù)據(jù)
????????????????????string?UserData?=?UserIdent.Ticket.UserData;

????????????????????//分割用戶數(shù)據(jù)得到的用戶角色數(shù)組
????????????????????string[]?roles?=?UserData.Split(‘‘);

????????????????????//從用戶標(biāo)識(shí)和角色組初始化GenericPrincipal類(lèi)
????????????????????HttpContext.Current.User?=?new?System.Security.Principal.GenericPrincipal(UserIdent?roles);
????????????????}
????????????}
????????}

????}
}

?屬性????????????大小?????日期????時(shí)間???名稱(chēng)
-----------?---------??----------?-----??----
?????文件?????????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個(gè)文件信息

評(píng)論

共有 條評(píng)論