首先是建立一個驗證碼頁面 ValidateCode.aspx
定義變數 這樣有利於後期的修改了
private int codeLen = 4;//驗證碼長度 private int fineness = 85;//圖片清晰度 private int imgWidth = 48;//圖片寬度 private int imgHeight = 24;//圖片高度 private string fontFamily = "Times New Roman";//字型名稱 private int fontSize = 14;//字型大小 private int fontStyle = 0;//字型樣式 private int posX = 0;//繪製起始座標X private int posY = 0;//繪製座標Y private string CreateValidateCode() //產生驗證碼 { string validateCode = ""; Random random = new Random();// 隨機數對象 for (int i = 0; i < codeLen; i++)//迴圈產生每位元值 { int n = random.Next(10);//數字 validateCode += n.ToString(); } Session["vcode"] = validateCode;//儲存驗證碼 return validateCode;// 返回驗證碼 } private void DisturbBitmap(Bitmap bitmap)//映像背景 { Random random = new Random();//通過隨機數產生 for (int i = 0; i < bitmap.Width; i++)//通過迴圈嵌套,逐個像素點產生 { for (int j = 0; j < bitmap.Height; j++) { if (random.Next(90) <= this.fineness) bitmap.SetPixel(i,j,Color.LightGray); } } } private void DrewValidateCode(Bitmap bitmap,string validateCode)//繪製驗證碼映像 { Graphics g = Graphics.FromImage(bitmap);//擷取繪製器對象 Font font = new Font(fontFamily,fontSize,FontStyle.Bold);//設定繪製字型 g.DrawString(validateCode,font,Brushes.Black,posX,posY);//繪製驗證碼映像 }
最後就是調用了
protected void Page_Load(object sender, EventArgs e) { string validateCode = CreateValidateCode();//產生驗證碼 Bitmap bitmap = new Bitmap(imgWidth,imgHeight);//產生Bitmap映像 DisturbBitmap(bitmap); //映像背景 DrewValidateCode(bitmap,validateCode);//繪製驗證碼映像 bitmap.Save(Response.OutputStream,ImageFormat.Gif);//儲存映像,等待輸出 }
ValidateCode.aspx頁面完成
剩下就簡單了 建立一個頁面
<asp:Image ID="Image1" runat="server" Height="21px" Width="61px" ImageUrl="~/Default2.aspx" ImageAlign="Middle" />
運行後的效果
提交的時候將文字框裡面的值與Session["vcode"] = validateCode;//儲存驗證碼 比較就可以判斷輸入是否正確了