程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> .NET實例教程 >> 在ASP.NET中如何用C#.NET實現基於表單的驗證

在ASP.NET中如何用C#.NET實現基於表單的驗證

編輯:.NET實例教程

翻譯:mydotnet

這篇文章引用到了Microsoft .Net類庫中的以下名空間:
System.Data.SqlClIEnt
System.Web.Security
-------------------------------
任務:
摘要: 
  1.要求
     2.用Visual C#.NET 創建一個ASP.Net 應用程序
  3.在Web.config文件裡配置安全設置
  4.創建一個數據庫表樣例來存放用戶資料
  5.創建Logon.ASPx頁面
  6.編寫事件處理代碼來驗證用戶身份
  7.創建一個Default.ASPx頁面
  8.附加提示
 參考文章
-------------------------------
摘要
 這篇文章示范了如何實現通過數據庫存儲用戶信息來實現基於表單的驗證.
(一)要求
 需要以下工具來實現
 1.Microsoft Visual Studio.Net
 2.Microsoft Internet Information Services(IIS) version 5.0 或者更新
 3.Microsoft SQL Server
(二)用C#.NET創建ASP.Net應用程序
 1.打開Visual Studio.Net
 2.建立一個新的ASP.Net Web應用程序,並且指定名稱和路徑.
(三)在Web.config文件裡配置安全設置
這一節示范了如何通過添加和修改<authentication>和<authorization>節點來配置ASP.Net應用程序以實現基於表單的驗證.
 1.在解決方案窗口裡,打開Web.config文件.
 2.把authentication模式改為Forms(注:默認為Windows)
 3.插入<Forms>標簽,並且填入適當的屬性.(請鏈接到在文章最後列出的MSDN文檔或者QuickStart文檔來查看這些屬性)先復制下面的代碼,接著再把它粘貼到<authentication>節:

<authentication mode="Forms">
 <form name=".ASPXFORMSDEMO" loginUrl="logon.ASPx" protection="All" path="/" timeout="30"/>
</authentication>
(注:如果不指定loginUrl,默認為default.ASPx)

 4.通過加入以下節點實現拒絕匿名訪問:
<authentication>
 <deny users="?"/>
 <allow users="*"/>
</authentication>

(四)創建一個數據庫表樣例來存放用戶資料
這一節示范了如何創建一個示例數據庫來存放用戶名,密碼,和用戶角色.如果你想要實現基於角色的安全就有必要在數據庫中添加一個存放用戶角色的字段.
 1.打開記事本。
 2.把下面這段腳本復制到記事本然後保存:

if exists (select * from sysobjects where id = 
object_id(N'[dbo].[Users]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[Users]
GO
CREATE TABLE [dbo].[Users] (
   [uname] [varchar] (15) NOT NULL ,
   [Pwd] [varchar] (25) NOT NULL ,
   [userRole] [varchar] (25) NOT NULL ,
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[Users] WITH NOCHECK ADD 
   CONSTRAINT [PK_Users] PRIMARY KEY  NONCLUSTERED 
   (
      [uname]
   )  ON [PRIMARY] 
GO

INSERT INTO Users values('user1','user1','Manager')
INSERT INTO Users values('user2','user2','Admin')
INSERT INTO Users values('user3','user3','User')
GO
 3.打開Microsoft SQL Server,打開查詢分析器,在數據庫列表裡選擇Pubs數據庫,然後把上面的腳本粘貼過來,運行。這時會在Pubs數據庫裡創建一個將會在這個示例程序中用到的示例用戶表。
(五)創建Logon.ASPx頁面
 1.在已創建好的項目裡創建一個新的Web 窗體,名為Logon.ASPx。
 2.在編輯器裡打開Logon.ASPx,切換到Html視圖。
 3.復制下面代碼,然後在編輯菜單裡“選擇粘貼為Html”選項,插入到<form>標簽之間。
<h3>
   <font face="Verdana">Logon Page</font>
</h3>
<table>
   <tr>
      <td>Email:</td>
      <td><input id="txtUserName" type="text" runat="server"></td>
      <td><ASP
:RequiredFIEldValidator ControlToValidate="txtUserName"
           Display="Static" ErrorMessage="*" runat="server" 
           ID="vUserName" /></td>
   </tr>
   <tr>
      <td>PassWord:</td>
      <td><input id="txtUserPass" type="passWord" runat="server"></td>
      <td><ASP:RequiredFIEldValidator ControlToValidate="txtUserPass"
          Display="Static" ErrorMessage="*" runat="server" 
          ID="vUserPass" />
      </td>
   </tr>
   <tr>
      <td>Persistent CookIE:</td>
      <td><ASP:CheckBox id="chkPersistCookIE" runat="server" autopostback="false" /></td>
      <td></td>
   </tr>
</table>
<input type="submit" Value="Logon" runat="server" ID="cmdLogin"><p></p>
<ASP:Label id="lblMsg" ForeColor="red" Font-Name="Verdana" Font-Size="10" runat="server" />

 這個頁面用來顯示一個登錄表單以便用戶可以提供他們的用戶名和密碼,並且記錄到應用程序中。
 4.切換到設計視圖,保存這個頁面。

(六)編寫事件處理代碼來驗證用戶身份
 下面這些代碼是放在後置代碼頁裡的(Logon.ASPx.cs)
 1.雙擊Logon頁面打開Logon.ASPx.cs文件。
 2.在後置代碼文件裡導入必要的名空間:
  using System.Data.SqlClIEnt;
  using System.Web.Security;
 3.創建一個ValidateUser的函數,通過在數據庫中查找用戶來驗證用戶的身份。(請改變菘饬幼址粗趕蚰愕氖菘猓?BR>private bool ValidateUser( string userName, string passWord )
{
 SqlConnection conn;
 SqlCommand cmd;
 string lookupPassWord = null;

 // Check for invalid userName.
 // userName must not be null and must be between 1 and 15 characters.
 if ( (  null == userName ) || ( 0 == userName.Length ) || ( userName.Length > 15 ) )
 {
  System.Diagnostics.Trace.WriteLine( "[ValidateUser] Input validation of userName failed." );
  return false;
 }

 // Check for invalid passWord.
 // passWord must not be null and must be between 1 and 25 characters.
 if ( (  null == passWord ) || ( 0 == passWord.Length ) || ( passWord.Length > 25 ) )
 {
  System.Diagnostics.Trace.WriteLine( "[ValidateUser] Input validation of passWord failed." );
  return false;
 }

 try
 {
  // Consult with your SQL Server administrator for an appropriate connection
  // string to use to connect to your local SQL Server.
  conn = new SqlConnection( "server=localhost;Integrated Security=SSPI;database=pubs" );
  conn.Open();

  // Crea
te SqlCommand to select pwd field from users table given supplIEd userName.
  cmd = new SqlCommand( "Select pwd from users where uname=@userName", conn );
  cmd.Parameters.Add( "@userName", SqlDbType.VarChar, 25 );
  cmd.Parameters["@userName"].Value = userName;

  // Execute command and fetch pwd fIEld into lookupPassWord string.
  lookupPassWord = (string) cmd.ExecuteScalar();

  // Cleanup command and connection objects.
  cmd.Dispose();
  conn.Dispose();
 }
 catch ( Exception ex )
 {
  // Add error handling here for debugging.
  // This error message should not be sent back to the caller.
  System.Diagnostics.Trace.WriteLine( "[ValidateUser] Exception " + ex.Message );
 }

 // If no passWord found, return false.
 if ( null == lookupPassWord ) 
 {
  // You could write failed login attempts here to event log for additional security.
  return false;
 }

 // Compare lookupPassword and input passWord, using a case-sensitive comparison.
 return ( 0 == string.Compare( lookupPassword, passWord, false ) );

}
(注:這段代碼的意思是先判斷輸入的用戶名和密碼是否符合一定的條件,如上,如果符合則連接到數據庫,並且根據用戶名來取出密碼並返回密碼,最後再判斷取出的密碼是否為空,如果不為空則再判斷取出的密碼和輸入的密碼是否相同,最後的false參數為不區分大小寫)

 4.在cmdLogin_ServerLick事件裡使用下面兩種方法中的一種來產生表單驗證的cookIE並將頁面轉到指定的頁面。
下面提供了兩種方法的示例代碼,根據你的需要來選擇。
 a)在cmdLogin_ServerClick事件裡調用RedirectFromLoginPage方法來自動產生表單驗證cookIE且將頁面定向到一個指定的頁面。
 private void cmdLogin_ServerClick(object sender,System.EventArgs e)
 {
  if(ValidateUser(txtUserName.value,txtUserPass.Value))

   FormsAuthentication.RedirectFromLoginPage(txtUserName.Value,chkPresistCookIE.Checked);
   else
    Response.Redirect("logon.ASPx",true);  

 }

 b)產生加密驗證票據,創建回應的cookie,並且重定向用戶。這種方式給了更多的控制權去讓你如何去創建cookIE,你也可以連同FormsAuthenticationTicket一起包含一些自定義的數據。
 private void cmdLogin_ServerClick(object sender,System.EventArgs e)
 {
  if(ValidateUser(txtUserName.value,txtUserPass.Value)) 
  {
   FormsAuthenticationTicket tkt;
   string cookIEstr;
   HttpCookIE ck;
   tkt=new FormsAuthenticationTicket(1,txtUserName.value,DateTime.Now,DateTime.Now.AddMinutes(30),chkPersistCookIE.Checked,"your custom data"); //創建一個驗證票據
   cookIEstr=FormsAuthentication.Encrypt(tkt);//並且加密票據
   ck=new HttpCookie(FormsAuthentication.FormsCookieName,cookiestr);// 創建cookIE
   if(chkpersistCookIE.Checked) //如果用戶選擇了保存密碼
    ck.Expires=tkt.Expiratioin;//設置cookIE有效期
    ck.Path=FormsAuthentication.FormsCookiePath;//cookIE存放路徑
   Response.CookIEs.Add(ck);
   string strRedirect;
   strRedirect=Request["ReturnUrl"];
   if(strRedirect==null)
    strRedirect="default.ASPx";
   Response.Redirect(strRedirect,true);
  }
  else
   Reponse.Redirect("logon.ASPx",true);
 }
  5.請確保在InititalizeComponent方法裡有如下代碼:
   this.cmdLogin.ServerClick += new System.EventHandler(this.cmdLogin_ServerClick);
  
(七)創建一個Default.ASPx頁面
 這一節創建一個測試頁面用來作為當用戶驗證完之後重定向到的頁面。如果用戶第一次沒有被記錄下來就浏覽到這個頁,這時用戶將被重定向到登錄頁面。
  1.把現有的WebForm1.aspx重命名為Default.ASPx,然後在編輯器裡打開。

  2.切換到Html視圖,復制以下代碼到<form>標簽之間:
 <input type="submit" Value="SignOut" runat="server" id="cmdSignOut">
這個按鈕用來注銷表單驗證會話。
  3.切換到設計視圖,保存頁面。
  4.在後置代碼裡導入必要的名空間:
 using System.Web.Security;
  5.雙擊SingOut按鈕打開後置代碼(Default.ASPx.cs),然後把下面代碼復制到cmdSingOut_ServerClick事件處理中:
  private void cmdSignOut_ServerClick(object sender,System.EventArgs e)
  {
   FormsAuthentication.SignOut();//注銷 
   Response.Redirect("logon.ASPx",true);
  }
  6.請確認在InititalizeComponent方法中有以下代碼:
  this.cmdSignOut.ServerClick += new System.EventHandler(this.cmdSignOut_ServerClick);
  7.保存編譯項目,現在可以運行這個應用程序了。
(八)附加提示
  1.如果想要在數據庫裡安全地存放密碼,可以在存放到數據到之前先用FormsAuthentication類裡的HashPassWordForStoringInConfigFile函數來加密。(注:將會產生一個哈希密碼)
  2.可以在配置文件(Web.config)裡存放SQL連接信息,以便當需要時方便修改。
  3.可以增加一些代碼來防止黑客使用窮舉法來進行登錄。例如,增加一些邏輯使用戶只能有兩三次的登錄機會。如果用戶在指定的登錄次數裡無法登錄的話,可以在數據庫裡設置一個標志符來防止用戶登錄直到此用戶訪問另一個頁面或者請示你的幫助。另外,也可以在需要時增加一些適當的錯誤處理。
  4.因為用戶是基於驗證cookie來識別的,所以可以在應用程序裡使用安全套接層(SSL)來保護驗證cookIE和其它有用的信息。
  5.基於表單的驗證方式要求客戶端的游覽器接受或者啟用cookIEs.
  6.在<authentication>配置節裡的timeout參數用來控制驗證cookIEs重新產生的間隔時間。可以給它賦一個適當的值來提供更好的性能和安全性。
  7.在Internet上的一些代理服務器或者緩沖可能會緩存一些將會重新返回給另外一個用戶的包含Set-Cookie頭的Web服務器響應。因為基於表單的驗證是使用cookIE來驗證用戶的,所以通過中間代理服務器或者緩沖的話可能會引起用戶會被意外地搞錯為原本不是要發送給他的用戶。
   
   
 參考文章:
  如果想要知道如何通過配置<credentials>節點存放用戶名和密碼來實現基於表單的驗證的話,請參考以下GotDotNet ASP.Net QuickStart示例:
  基於表單的驗證:http://www.gotdotnet.com/QuickStart/aspplus/default.aspx?url=/quickstart/aspplus/doc/formsauth.aspx
  如果想要知道如何使用XML文件來存放用戶名和密碼來實現基於表單的驗證的話,請參考SDK文檔的以下示例:
 http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconcookieauthenticationusinganxmlusersfile.asp
   如果想要知道更多的關於ASP.NET安全的話,請參考Microsoft .Net Framework Developer's Guide文檔:
ASP.Net 安全:  http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconas


pnetwebapplicationsecurity.ASP
   如果想知道更多關於System.Web.Security名空間的話,請參考:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWebSecurity.asp
   如果想知道更多的關於ASP.NET配置的話,請參考Microsoft .Net Framework Developer's Guide文檔:
ASP.Net配置:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconaspnetconfiguration.asp
ASP.Net配置節點:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpgrfaspnetconfigurationsections.asp
  如果想知道更多關於ASP.Net安全指導的話,請參考MSDN:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnbda/html/authaspdotnet.asp
  如果想知道更多關於ASP.Net的,請參考MSDN新聞組:
http://go.microsoft.com/fwlink/?linkid=5811&clcid=0x409

 這篇文章適用於:
Microsoft ASP.NET (included with the .Net Framework 1.1)
Microsoft Visual C# .Net (2003)
Microsoft ASP.NET (included with the .Net Framework) 1.0
Microsoft Visual C# .Net (2002)
Microsoft SQL Server 2000 (all editions)
Microsoft SQL Server 7.0
Microsoft SQL Server 2000 64 bit (all editions)
  
原文鏈接:http://support.microsoft.com/default.aspx?scid=kb;en-us;301240

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved