asp.net 簡單驗證碼驗證實現代碼

來源:互聯網
上載者:User

首先是建立一個驗證碼頁面 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;//儲存驗證碼 比較就可以判斷輸入是否正確了

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.