在ASP.NET下實現數字和字元相混合的驗證碼 (轉)

amyz發表於2007-08-17
在ASP.NET下實現數字和字元相混合的驗證碼 (轉)[@more@]  經常在論壇裡看到有問怎麼實現驗證碼的帖子,其實關於驗證碼的文章在CSDN,DEV-CLUB等網站上都有很多,但是很多文章只講訴瞭如何輸出一個隨機生成數字或字元的圖象,當然了,這個是驗證碼的核心了,但是對很多的初學者來說,怎麼使用它生成的圖象又成了一個問題(論壇有不少問這個的),這也是我寫本文的一個原因.
  言歸正傳,關於驗證碼的原理,我就不多說了,大家可以參見其他文章,文末附有完整的例項程式碼,裡面有詳細的註釋,你可以跳過解說文字,直接使用
  首先,我要簡要說說Session和ViewState的用法,因為後面會用到它
  把資料在Session中:Session("key")="test"
  從Session取值:dim testvalue as string=Session("key")
  類似的:
  把資料儲存在ViewState中:ViewState("key")="test"
  從ViewState中取值:dim testvalue as string=ViewState("key")
  關於ViewState的更詳細的資料,你可以參看MSDN的.com/China/Community/program/originalarticles/TechDoc/Viewstate.mspx"><< ViewState 初探>>一文
  百聞不如一見,有時程式碼本身就比任何解說更有表現力,所以在此就不對程式碼解說太多了,本文實現的驗證碼需要用到兩個:
  gif.  該檔案用於生成驗證碼
  ValidateCode.aspx  該檔案用來測試驗證碼(即如何使用)
  下面給出gif.aspx的完整程式碼:




<BR>&nbsp;Sub Page_Load(Sender as ,e as eventargs)<BR>&nbsp; 'RndNum是一個自定義<BR>&nbsp; dim VNum as string=RndNum(4)<BR>&nbsp; Session("VNum")=VNum<BR>&nbsp; ValidateCode(VNum)<BR>&nbsp;End Sub<BR>&nbsp;'生成圖象驗證碼函式<BR>&nbsp;Sub ValidateCode(VNum)<BR>&nbsp; Dim Img as System.Drawing.Bitmap<BR>&nbsp; Dim g as Graphics<BR>&nbsp; Dim ms as MemoryStream<BR>&nbsp; dim gheight as integer=Int(Len(VNum)*11.5)<BR>&nbsp; 'gheight為圖片寬度,根據字元長度自動更改圖片寬度<BR>&nbsp; img=new BitMap(Gheight,20)<BR>&nbsp; g=Graphics.FromImage(img)<BR>&nbsp; g.DrawString(VNum,(New Font("Arial",10)),(New Solirush(color.blue)),3,3)'在矩形內繪製字串(字串,字型,畫筆顏色,左上x.左上y)<BR>&nbsp; ms=New MemoryStream()<BR>&nbsp; img.Save(ms,ImageFormat.Png)<BR>&nbsp; Response.ClearContent() '需要輸出圖象資訊 要修改HTTP頭<BR>&nbsp; Response.ContentType="image/Png"<BR>&nbsp; Response.BinaryWrite(ms.ToArray())<BR>&nbsp; g.Dispose()<BR>&nbsp; img.Dispose()<BR>&nbsp; Response.End()<BR>&nbsp;End Sub<BR>&nbsp; '--------------------------------------------<BR>&nbsp; '函式名稱:RndNum<BR>&nbsp; '函式引數:VcodeNum--設定返回隨機字串的位數<BR>&nbsp; '函式功能:產生數字和字元混合的隨機字串<BR>&nbsp; Function RndNum(VcodeNum)<BR>&nbsp; dim Vchar as string="0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,W,X,Y,Z"<BR>&nbsp; dim VcArray() as string=split(Vchar,",") '將字串生成陣列<BR>&nbsp; dim VNum as string=""<BR>&nbsp; dim i as byte<BR>&nbsp; For i=1 to VcodeNum<BR>&nbsp; Ranize<BR>&nbsp; VNum=VNum & VcArray(Int(35*Rnd)) '陣列一般從0開始讀取,所以這裡為35*Rnd<BR>&nbsp; Next<BR>&nbsp; Return VNum<BR>&nbsp; End Function<BR>

那麼又應該如何使用該檔案生成的圖象驗證碼,看這句程式碼:
 
這就是用來顯示驗證碼的Image,你可以把它放在任何你喜歡的地方,下面的給出詳細的使用程式碼,你把它儲存為ValidateCode.aspx,並把它和gif.aspx放在同一目錄下,在中開啟ValidateCode.aspx,就可以測試它的效果了:
<BR>&nbsp; Sub Page_Load(Sender as object,e as eventargs)<BR>&nbsp; dim VNum as string=Session("VNum")<BR>&nbsp; Session.Abandon()<BR>&nbsp; ViewState("VNum")=VNum<BR>&nbsp; End Sub<BR>&nbsp; '下面的事件程式碼是用來測試驗證碼,可以根據需要更改<BR>&nbsp; Sub btnSubmit_click(sender as object,e as eventargs)<BR>&nbsp; '判斷輸入的驗證碼與所給是否相同<BR>&nbsp; If txtValidateCode.text=Cstr(ViewState("VNum")) then<BR>&nbsp; lblShow.text="<font color='red'>提示:驗證透過</font>"<BR>&nbsp; Else<BR>&nbsp; lblShow.text="所填寫的驗證碼與所給的不符"<BR>&nbsp; End If<BR>&nbsp; End Sub<BR>




 

 
  <!--DWLayoutTable--&gt
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
        
  
 驗證碼:   
 輸入驗證碼:*注意:區分大小寫 
       
      

 





來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10752019/viewspace-962870/,如需轉載,請註明出處,否則將追究法律責任。

相關文章