程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> 關於C# >> 如何在asp.net中動態生成驗證碼

如何在asp.net中動態生成驗證碼

編輯:關於C#
 

現在越來越多的網站喜歡搞個驗證碼出來,而且各個語言基本上都能做到,今天我來一個C#寫的!
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.Drawing.Imaging;
using System.Drawing.Drawing2D;

//建立位圖對象

public void randomNumber()

{
Bitmap newBitmap = new Bitmap(36,16,PixelFormat.Format32bppArgb);
//根據上面創建的位圖對象創建繪圖面
Graphics g = Graphics.FromImage(newBitmap);
//以指定的顏色填充矩形區
g.FillRectangle(new SolidBrush(Color.White), new Rectangle(0,0,36,16));
//創建字體對象
Font textFont = new Font("Times New Roman",10);
//創建RectangleF結構指定一個區域
RectangleF rectangle = new RectangleF(0,0,36,16);
//創建隨機數對象
Random rd = new Random();
//取得隨機數
int valationNo = 1000 + rd.Next(8999);
//使用指定的顏色填充上面RectangleF結構指定的矩形區域
g.FillRectangle(new SolidBrush(Color.BurlyWood), rectangle);
//在上面填充的矩形區域中填充上面生成的隨機數
g.DrawString(valationNo.ToString(), textFont, new SolidBrush(Color.Blue), rectangle);
//把創建的位圖保存到指定的路徑
newBitmap.Save(Server.MapPath("img")+"//Img.gif", ImageFormat.Gif);

}

  生成以後在前台頁面裡引入這個圖片的地址就可以了!
 

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