[转][.NET 基于角色安全性验证] 之三:ASP.NET Forms 身份验证
生活随笔
收集整理的這篇文章主要介紹了
[转][.NET 基于角色安全性验证] 之三:ASP.NET Forms 身份验证
小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
在開(kāi)發(fā)過(guò)程中,我們需要做的事情包括:
1.?在?web.config?中設(shè)置?Forms?身份驗(yàn)證相關(guān)參數(shù)。
2.?創(chuàng)建登錄頁(yè)。
登錄頁(yè)中的操作包括:
1.?驗(yàn)證用戶名和密碼是否正確。
2.?創(chuàng)建身份驗(yàn)證票證對(duì)象。
3.?將身份驗(yàn)證票證對(duì)象加密成字符串,寫(xiě)入?Cookies。
4.?重定向到原始請(qǐng)求?URL。
1.?簡(jiǎn)單演示
web.config
<?xml?version="1.0"?>
<configuration>
??<system.web>
????<compilation?debug="true"/>
????<authentication?mode="Forms">
??????<forms?loginUrl="~/logon.aspx"?name="MyAuthForm">
????????<credentials?passwordFormat="Clear">
??????????<user?name="username"?password="password"/>
????????</credentials>
??????</forms>
????</authentication>
????<authorization>
??????<deny?users="?"/>
????</authorization>
??</system.web>
</configuration>
logon.aspx
<%@?Page?Language="C#"?%>
<!DOCTYPE?html?PUBLIC?"-//W3C//DTD?XHTML?1.0?Transitional//EN"?"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script?runat="server">
??protected?void?Button1_Click(object?sender,?EventArgs?e)
??{
????if?(FormsAuthentication.Authenticate(this.txtUsername.Text,?this.txtPassword.Text))
??????FormsAuthentication.RedirectFromLoginPage(this.txtUsername.Text,?true);
????else
??????Response.Write("用戶名或密碼錯(cuò)誤!");
??}
</script>
<html?xmlns="http://www.w3.org/1999/xhtml"?>
<head?runat="server">
?<title>登錄頁(yè)</title>
</head>
<body>
?<form?id="form1"?runat="server">
?<div>
????Username:?<asp:TextBox?ID="txtUsername"?runat="server"?Width="100px"?Text="username"></asp:TextBox><br?/>
????Password:?<asp:TextBox?ID="txtPassword"?runat="server"?Width="100px"?Text="password"></asp:TextBox><br?/>
????<asp:Button?ID="Button1"?runat="server"?Text="Sign?In"?OnClick="Button1_Click"?/>
?</div>
?</form>
</body>
</html>
2.?Forms?驗(yàn)證參數(shù)
如果只是某些子目錄中的頁(yè)面訪問(wèn)請(qǐng)求需要進(jìn)行身份驗(yàn)證,那么可以修改一下根路徑下的?web.config。
web.config
<?xml?version="1.0"?>
<configuration>
??<system.web>
????<compilation?debug="true"/>
????<authentication?mode="Forms">
??????<forms?loginUrl="~/logon.aspx"?name="MyAuthForm">
????????<credentials?passwordFormat="Clear">
??????????<user?name="username"?password="password"/>
????????</credentials>
??????</forms>
????</authentication>
????<authorization>
??????<allow?users="*"/>
????</authorization>
??</system.web>
</configuration>
然后在需要進(jìn)行身份驗(yàn)證的子目錄中創(chuàng)建一個(gè)新的?web.config。
<?xml?version="1.0"?>
<configuration>
??<system.web>
????<authorization>
??????<deny?users="?"/>
????</authorization>
??</system.web>
</configuration>
我們還可以在根路徑下的?web.config?中指定相關(guān)參數(shù)來(lái)控制身份驗(yàn)證模式。
cookieless?
??定義是否使用?Cookie?以及?Cookie?的行為。
??.UseCookies?
????指定無(wú)論在什么設(shè)備上都始終使用?Cookie。
??.UseUri?
????指定從不使用?Cookie。
??.AutoDetect?
????如果設(shè)備配置文件支持?Cookie,則指定使用?Cookie;否則不使用?Cookie。
??.UseDeviceProfile?
????如果瀏覽器支持?Cookie,則指定使用?Cookie;否則不使用?Cookie。?
????對(duì)于支持?Cookie?的設(shè)備,不嘗試通過(guò)探測(cè)來(lái)確定是否已啟用?Cookie?支持。
?
defaultUrl?
??定義在身份驗(yàn)證之后用于重定向的默認(rèn)?URL。?默認(rèn)值為?"default.aspx"。
??當(dāng)我們直接打開(kāi)登錄頁(yè)進(jìn)行登錄后,該屬性就很重要了。
loginUrl?
??指定如果找不到任何有效的身份驗(yàn)證?Cookie,將請(qǐng)求重定向到的用于登錄的?URL。默認(rèn)值為?login.aspx。
?
name?
??指定要用于身份驗(yàn)證的?HTTP?Cookie。如果正在一臺(tái)服務(wù)器上運(yùn)行多個(gè)應(yīng)用程序并且每個(gè)應(yīng)用程序都需要
??唯一的?Cookie,則必須在每個(gè)應(yīng)用程序的?Web.config?文件中配置?Cookie?名稱。默認(rèn)值為?".ASPXAUTH"。
?
path?
??為應(yīng)用程序發(fā)出的?Cookie?指定路徑。?
??默認(rèn)值是斜杠?(/),這是因?yàn)榇蠖鄶?shù)瀏覽器是區(qū)分大小寫(xiě)的,如果路徑大小寫(xiě)不匹配,瀏覽器不會(huì)送回?Cookie。
?
timeout?
??指定?Cookie?過(guò)期前逝去的時(shí)間(以整數(shù)分鐘為單位)。持久性?Cookie?不超時(shí)。默認(rèn)值為?"30"(30?分鐘)。
更詳細(xì)信息,請(qǐng)參考?MSDN?文檔。
ms-help://MS.MSDNQTR.v80.chs/MS.MSDN.v80/MS.NETDEVFX.v20.chs/dv_ASPNETgenref/html/8163b8b5-ea6c-46c8-b5a9-c4c3de31c0b3.htm
<?xml?version="1.0"?>
<configuration>
??<system.web>
????<compilation?debug="true"/>
????<authentication?mode="Forms">
??????<forms?loginUrl="~/logon.aspx"?name="MyForm"?defaultUrl="index.aspx"?timeout="10">
????????<credentials?passwordFormat="Clear">
??????????<user?name="username"?password="password"/>
????????</credentials>
??????</forms>
????</authentication>
????<authorization>
??????<allow?users="*"/>
????</authorization>
??</system.web>
</configuration>
3.?驗(yàn)證方法
我們可以使用下面?4?種方法中的一種進(jìn)行票證寫(xiě)入和重定向操作,其實(shí)前?3?種只不過(guò)是對(duì)第?4?種方法的封裝而已。推薦使用?1、4。注意后三種方法不支持cookieless="UseUri"。
//?1.?使用缺省身份驗(yàn)證票證
FormsAuthentication.RedirectFromLoginPage("username",?true);
//?2.?使用缺省身份驗(yàn)證票證
FormsAuthentication.SetAuthCookie("username",?false);
Response.Redirect(FormsAuthentication.GetRedirectUrl("username",?false));
//?3.?使用缺省身份驗(yàn)證票證
Response.Cookies.Add(FormsAuthentication.GetAuthCookie("username",?false));
Response.Redirect(FormsAuthentication.GetRedirectUrl("username",?false));
//?4.?使用自定義身份驗(yàn)證票證
FormsAuthenticationTicket?ticket?=?new?FormsAuthenticationTicket(1,?"username",?DateTime.Now,?DateTime.Now.AddMinutes(10),?false,?null);
Response.Cookies.Add(new?HttpCookie(FormsAuthentication.FormsCookieName,?FormsAuthentication.Encrypt(ticket)));
Response.Redirect(FormsAuthentication.GetRedirectUrl("username",?false));
4.?自定義身份標(biāo)識(shí)類型
MSDN?文檔告訴我們,可以在?Global.asax?中通過(guò)?Authenticate?事件使用自定義?Principal、Identity?替代?GenericPrincipal、FormsIdentity。因?yàn)?Authenticate?事件在?AuthenticateRequest?事件期間引發(fā),因此我們可以在其他模塊之前創(chuàng)建用戶身份標(biāo)識(shí)對(duì)象(FormsAuthenticationEventArgs.User)。
ms-help://MS.MSDNQTR.v80.chs/MS.MSDN.v80/MS.NETDEVFX.v20.chs/cpref12/html/T_System_Web_Security_FormsAuthenticationEventHandler.htm
class?MyPrincipal?:?System.Security.Principal.IPrincipal
{
??//?
}
class?MyIdentity?:?System.Security.Principal.IIdentity
{
??//?
}
??
public?void?FormsAuthentication_OnAuthenticate(object?sender,?FormsAuthenticationEventArgs?args)
{
??if?(FormsAuthentication.CookiesSupported)
??{
????if?(Request.Cookies[FormsAuthentication.FormsCookieName]?!=?null)
????{
??????try
??????{
????????FormsAuthenticationTicket?ticket?=?FormsAuthentication.Decrypt(
??????????Request.Cookies[FormsAuthentication.FormsCookieName].Value);
?
????????args.User?=?new?MyPrincipal(new?MyIdentity?(ticket),?new?string[0]);
??????}
??????catch?(Exception?e)
??????{
????????//?Decrypt?method?failed.
??????}
????}
??}
??else
??{
????throw?new?HttpException("Cookieless?Forms?Authentication?is?not?"?+
??????"supported?for?this?application.");
??}
}
當(dāng)然,還有另外一種簡(jiǎn)便的方法。
if?(!(HttpContext.Current.User?is?MyPrincipal))
{
??HttpContext.Current.User?=?new?MyPrincipal(new?MyIdentity(ticket),?roles);
}
只不過(guò),你要找一個(gè)合適的時(shí)機(jī)而已。
5.?FormsAuthentication
Authenticate?
對(duì)照存儲(chǔ)在應(yīng)用程序配置文件中的憑據(jù)來(lái)驗(yàn)證用戶名和密碼。該方法只能驗(yàn)證存儲(chǔ)在?web.config?中的用戶名和密碼信息,大多數(shù)時(shí)候我們會(huì)用自己的驗(yàn)證方法替代它。
Decrypt?
解密從?Cookie?中獲取的加密字符串,創(chuàng)建?FormsAuthenticationTicket?對(duì)象。?
Encrypt?
加密?FormsAuthenticationTicket,返回加密后字符串。
GetRedirectUrl?
返回導(dǎo)致重定向到登錄頁(yè)的原始請(qǐng)求?URL。GetRedirectUrl?方法返回查詢字符串中使用?ReturnURL?變量名指定的?URL。例如,在?URL?http://www.contoso.com/login.aspx?ReturnUrl=caller.aspx?中,GetRedirectUrl?方法返回返回?caller.aspx。如果?ReturnURL?變量不存在,GetRedirectUrl?方法將返回?DefaultUrl?屬性中的?URL。
RedirectFromLoginPage?
將經(jīng)過(guò)身份驗(yàn)證的用戶重定向回最初請(qǐng)求的?URL?或?DefaultUrl?。?
RedirectToLoginPage?
將瀏覽器重定向到登錄?URL。?
RenewTicketIfOld?
有條件地更新?FormsAuthenticationTicket?的發(fā)出日期和時(shí)間以及過(guò)期日期和時(shí)間。?注意該方法只是返回更新后的?FormsAuthenticationTicket?對(duì)象,并不會(huì)寫(xiě)入?Cookies。
GetAuthCookie?
為給定的用戶名創(chuàng)建身份驗(yàn)證?Cookie,并不添加到響應(yīng)的?Cookie?集合或?URL。?
SetAuthCookie?
為提供的用戶名創(chuàng)建一個(gè)身份驗(yàn)證票證,并將其添加到響應(yīng)的?Cookie?集合或?URL。?
SignOut?
從瀏覽器刪除?Forms?身份驗(yàn)證票證。?
6.?票證自定義數(shù)據(jù)應(yīng)用
使用自定義票證時(shí),我們可以添加一個(gè)?userData?參數(shù)。善加利用這個(gè)參數(shù)還是能帶了一些意想不到的好處的,諸如存儲(chǔ)用戶?VIP?等級(jí)編號(hào),所擁有的權(quán)限/角色集合等。當(dāng)然?Cookie?和?URL?參數(shù)長(zhǎng)度有限,這個(gè)自定義數(shù)據(jù)不能太長(zhǎng)。?
1.?在?web.config?中設(shè)置?Forms?身份驗(yàn)證相關(guān)參數(shù)。
2.?創(chuàng)建登錄頁(yè)。
登錄頁(yè)中的操作包括:
1.?驗(yàn)證用戶名和密碼是否正確。
2.?創(chuàng)建身份驗(yàn)證票證對(duì)象。
3.?將身份驗(yàn)證票證對(duì)象加密成字符串,寫(xiě)入?Cookies。
4.?重定向到原始請(qǐng)求?URL。
1.?簡(jiǎn)單演示
web.config
<?xml?version="1.0"?>
<configuration>
??<system.web>
????<compilation?debug="true"/>
????<authentication?mode="Forms">
??????<forms?loginUrl="~/logon.aspx"?name="MyAuthForm">
????????<credentials?passwordFormat="Clear">
??????????<user?name="username"?password="password"/>
????????</credentials>
??????</forms>
????</authentication>
????<authorization>
??????<deny?users="?"/>
????</authorization>
??</system.web>
</configuration>
logon.aspx
<%@?Page?Language="C#"?%>
<!DOCTYPE?html?PUBLIC?"-//W3C//DTD?XHTML?1.0?Transitional//EN"?"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script?runat="server">
??protected?void?Button1_Click(object?sender,?EventArgs?e)
??{
????if?(FormsAuthentication.Authenticate(this.txtUsername.Text,?this.txtPassword.Text))
??????FormsAuthentication.RedirectFromLoginPage(this.txtUsername.Text,?true);
????else
??????Response.Write("用戶名或密碼錯(cuò)誤!");
??}
</script>
<html?xmlns="http://www.w3.org/1999/xhtml"?>
<head?runat="server">
?<title>登錄頁(yè)</title>
</head>
<body>
?<form?id="form1"?runat="server">
?<div>
????Username:?<asp:TextBox?ID="txtUsername"?runat="server"?Width="100px"?Text="username"></asp:TextBox><br?/>
????Password:?<asp:TextBox?ID="txtPassword"?runat="server"?Width="100px"?Text="password"></asp:TextBox><br?/>
????<asp:Button?ID="Button1"?runat="server"?Text="Sign?In"?OnClick="Button1_Click"?/>
?</div>
?</form>
</body>
</html>
2.?Forms?驗(yàn)證參數(shù)
如果只是某些子目錄中的頁(yè)面訪問(wèn)請(qǐng)求需要進(jìn)行身份驗(yàn)證,那么可以修改一下根路徑下的?web.config。
web.config
<?xml?version="1.0"?>
<configuration>
??<system.web>
????<compilation?debug="true"/>
????<authentication?mode="Forms">
??????<forms?loginUrl="~/logon.aspx"?name="MyAuthForm">
????????<credentials?passwordFormat="Clear">
??????????<user?name="username"?password="password"/>
????????</credentials>
??????</forms>
????</authentication>
????<authorization>
??????<allow?users="*"/>
????</authorization>
??</system.web>
</configuration>
然后在需要進(jìn)行身份驗(yàn)證的子目錄中創(chuàng)建一個(gè)新的?web.config。
<?xml?version="1.0"?>
<configuration>
??<system.web>
????<authorization>
??????<deny?users="?"/>
????</authorization>
??</system.web>
</configuration>
我們還可以在根路徑下的?web.config?中指定相關(guān)參數(shù)來(lái)控制身份驗(yàn)證模式。
cookieless?
??定義是否使用?Cookie?以及?Cookie?的行為。
??.UseCookies?
????指定無(wú)論在什么設(shè)備上都始終使用?Cookie。
??.UseUri?
????指定從不使用?Cookie。
??.AutoDetect?
????如果設(shè)備配置文件支持?Cookie,則指定使用?Cookie;否則不使用?Cookie。
??.UseDeviceProfile?
????如果瀏覽器支持?Cookie,則指定使用?Cookie;否則不使用?Cookie。?
????對(duì)于支持?Cookie?的設(shè)備,不嘗試通過(guò)探測(cè)來(lái)確定是否已啟用?Cookie?支持。
?
defaultUrl?
??定義在身份驗(yàn)證之后用于重定向的默認(rèn)?URL。?默認(rèn)值為?"default.aspx"。
??當(dāng)我們直接打開(kāi)登錄頁(yè)進(jìn)行登錄后,該屬性就很重要了。
loginUrl?
??指定如果找不到任何有效的身份驗(yàn)證?Cookie,將請(qǐng)求重定向到的用于登錄的?URL。默認(rèn)值為?login.aspx。
?
name?
??指定要用于身份驗(yàn)證的?HTTP?Cookie。如果正在一臺(tái)服務(wù)器上運(yùn)行多個(gè)應(yīng)用程序并且每個(gè)應(yīng)用程序都需要
??唯一的?Cookie,則必須在每個(gè)應(yīng)用程序的?Web.config?文件中配置?Cookie?名稱。默認(rèn)值為?".ASPXAUTH"。
?
path?
??為應(yīng)用程序發(fā)出的?Cookie?指定路徑。?
??默認(rèn)值是斜杠?(/),這是因?yàn)榇蠖鄶?shù)瀏覽器是區(qū)分大小寫(xiě)的,如果路徑大小寫(xiě)不匹配,瀏覽器不會(huì)送回?Cookie。
?
timeout?
??指定?Cookie?過(guò)期前逝去的時(shí)間(以整數(shù)分鐘為單位)。持久性?Cookie?不超時(shí)。默認(rèn)值為?"30"(30?分鐘)。
更詳細(xì)信息,請(qǐng)參考?MSDN?文檔。
ms-help://MS.MSDNQTR.v80.chs/MS.MSDN.v80/MS.NETDEVFX.v20.chs/dv_ASPNETgenref/html/8163b8b5-ea6c-46c8-b5a9-c4c3de31c0b3.htm
<?xml?version="1.0"?>
<configuration>
??<system.web>
????<compilation?debug="true"/>
????<authentication?mode="Forms">
??????<forms?loginUrl="~/logon.aspx"?name="MyForm"?defaultUrl="index.aspx"?timeout="10">
????????<credentials?passwordFormat="Clear">
??????????<user?name="username"?password="password"/>
????????</credentials>
??????</forms>
????</authentication>
????<authorization>
??????<allow?users="*"/>
????</authorization>
??</system.web>
</configuration>
3.?驗(yàn)證方法
我們可以使用下面?4?種方法中的一種進(jìn)行票證寫(xiě)入和重定向操作,其實(shí)前?3?種只不過(guò)是對(duì)第?4?種方法的封裝而已。推薦使用?1、4。注意后三種方法不支持cookieless="UseUri"。
//?1.?使用缺省身份驗(yàn)證票證
FormsAuthentication.RedirectFromLoginPage("username",?true);
//?2.?使用缺省身份驗(yàn)證票證
FormsAuthentication.SetAuthCookie("username",?false);
Response.Redirect(FormsAuthentication.GetRedirectUrl("username",?false));
//?3.?使用缺省身份驗(yàn)證票證
Response.Cookies.Add(FormsAuthentication.GetAuthCookie("username",?false));
Response.Redirect(FormsAuthentication.GetRedirectUrl("username",?false));
//?4.?使用自定義身份驗(yàn)證票證
FormsAuthenticationTicket?ticket?=?new?FormsAuthenticationTicket(1,?"username",?DateTime.Now,?DateTime.Now.AddMinutes(10),?false,?null);
Response.Cookies.Add(new?HttpCookie(FormsAuthentication.FormsCookieName,?FormsAuthentication.Encrypt(ticket)));
Response.Redirect(FormsAuthentication.GetRedirectUrl("username",?false));
4.?自定義身份標(biāo)識(shí)類型
MSDN?文檔告訴我們,可以在?Global.asax?中通過(guò)?Authenticate?事件使用自定義?Principal、Identity?替代?GenericPrincipal、FormsIdentity。因?yàn)?Authenticate?事件在?AuthenticateRequest?事件期間引發(fā),因此我們可以在其他模塊之前創(chuàng)建用戶身份標(biāo)識(shí)對(duì)象(FormsAuthenticationEventArgs.User)。
ms-help://MS.MSDNQTR.v80.chs/MS.MSDN.v80/MS.NETDEVFX.v20.chs/cpref12/html/T_System_Web_Security_FormsAuthenticationEventHandler.htm
class?MyPrincipal?:?System.Security.Principal.IPrincipal
{
??//?
}
class?MyIdentity?:?System.Security.Principal.IIdentity
{
??//?
}
??
public?void?FormsAuthentication_OnAuthenticate(object?sender,?FormsAuthenticationEventArgs?args)
{
??if?(FormsAuthentication.CookiesSupported)
??{
????if?(Request.Cookies[FormsAuthentication.FormsCookieName]?!=?null)
????{
??????try
??????{
????????FormsAuthenticationTicket?ticket?=?FormsAuthentication.Decrypt(
??????????Request.Cookies[FormsAuthentication.FormsCookieName].Value);
?
????????args.User?=?new?MyPrincipal(new?MyIdentity?(ticket),?new?string[0]);
??????}
??????catch?(Exception?e)
??????{
????????//?Decrypt?method?failed.
??????}
????}
??}
??else
??{
????throw?new?HttpException("Cookieless?Forms?Authentication?is?not?"?+
??????"supported?for?this?application.");
??}
}
當(dāng)然,還有另外一種簡(jiǎn)便的方法。
if?(!(HttpContext.Current.User?is?MyPrincipal))
{
??HttpContext.Current.User?=?new?MyPrincipal(new?MyIdentity(ticket),?roles);
}
只不過(guò),你要找一個(gè)合適的時(shí)機(jī)而已。
5.?FormsAuthentication
Authenticate?
對(duì)照存儲(chǔ)在應(yīng)用程序配置文件中的憑據(jù)來(lái)驗(yàn)證用戶名和密碼。該方法只能驗(yàn)證存儲(chǔ)在?web.config?中的用戶名和密碼信息,大多數(shù)時(shí)候我們會(huì)用自己的驗(yàn)證方法替代它。
Decrypt?
解密從?Cookie?中獲取的加密字符串,創(chuàng)建?FormsAuthenticationTicket?對(duì)象。?
Encrypt?
加密?FormsAuthenticationTicket,返回加密后字符串。
GetRedirectUrl?
返回導(dǎo)致重定向到登錄頁(yè)的原始請(qǐng)求?URL。GetRedirectUrl?方法返回查詢字符串中使用?ReturnURL?變量名指定的?URL。例如,在?URL?http://www.contoso.com/login.aspx?ReturnUrl=caller.aspx?中,GetRedirectUrl?方法返回返回?caller.aspx。如果?ReturnURL?變量不存在,GetRedirectUrl?方法將返回?DefaultUrl?屬性中的?URL。
RedirectFromLoginPage?
將經(jīng)過(guò)身份驗(yàn)證的用戶重定向回最初請(qǐng)求的?URL?或?DefaultUrl?。?
RedirectToLoginPage?
將瀏覽器重定向到登錄?URL。?
RenewTicketIfOld?
有條件地更新?FormsAuthenticationTicket?的發(fā)出日期和時(shí)間以及過(guò)期日期和時(shí)間。?注意該方法只是返回更新后的?FormsAuthenticationTicket?對(duì)象,并不會(huì)寫(xiě)入?Cookies。
GetAuthCookie?
為給定的用戶名創(chuàng)建身份驗(yàn)證?Cookie,并不添加到響應(yīng)的?Cookie?集合或?URL。?
SetAuthCookie?
為提供的用戶名創(chuàng)建一個(gè)身份驗(yàn)證票證,并將其添加到響應(yīng)的?Cookie?集合或?URL。?
SignOut?
從瀏覽器刪除?Forms?身份驗(yàn)證票證。?
6.?票證自定義數(shù)據(jù)應(yīng)用
使用自定義票證時(shí),我們可以添加一個(gè)?userData?參數(shù)。善加利用這個(gè)參數(shù)還是能帶了一些意想不到的好處的,諸如存儲(chǔ)用戶?VIP?等級(jí)編號(hào),所擁有的權(quán)限/角色集合等。當(dāng)然?Cookie?和?URL?參數(shù)長(zhǎng)度有限,這個(gè)自定義數(shù)據(jù)不能太長(zhǎng)。?
總結(jié)
以上是生活随笔為你收集整理的[转][.NET 基于角色安全性验证] 之三:ASP.NET Forms 身份验证的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: java 项目中遇到的错误
- 下一篇: 菜鸟学SQL注入 --- 一个简单的教