Captcha 安全碼[ASP.NET] 產生驗證圖片字
一直要把這個整理出來,該好今天有廠商需要這段,就順便把說明打一打,分享出來這段程式碼
流程如下
產生驗證圖片的 CheckImageCode.aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="CheckImageCode.aspx.cs" Inherits="CheckImageCode" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>未命名頁面</title>
</head>
<body>
<form id="form1" runat="server">
<div>
</div>
</form>
</body>
</html>
CheckImageCode.cs
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Drawing;
public partial class CheckImageCode : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
this.CreateCheckCodeImage(GenerateCheckCode());
}
private string GenerateCheckCode()
{
int number;
char code;
string checkCode = String.Empty;
System.Random random = new Random();
//要製造出幾個驗證碼
for (int i = 0; i < 4; i++)
{
number = random.Next();
//亂數決定哪一個是數字或字母
if (number % 2 == 0)
code = (char)('0' + (char)(number % 10));
else
code = (char)('A' + (char)(number % 26));
checkCode += code.ToString();
}
//寫入Cook
Response.Cookies.Add(new HttpCookie("CheckCode", checkCode));
return checkCode;
}
}
使用在投票頁面 投票頁面.aspx
<tr>
<td width="40%" height="20" valign="middle"><div align="right" ><font color="#FF0066">請輸入檢核文字:</font></div></td>
<td width="26%" valign="bottom">
<asp:TextBox ID="txtCheckCode" runat="server" MaxLength="8" Width="80%" AutoCompleteType="Disabled"></asp:TextBox></td>
<td width="19%"valign="bottom">
<img src="CheckImageCode.aspx" height="20"/> </td>
<td width="20%" valign="bottom">
<asp:Button ID="btnSend" runat="server" OnClick="btnSend_Click" Text="送出資料" /></td>
</tr>
投票頁面.cs 要加入的流程
// 驗證碼是否能夠寫入cookie內
if (Request.Cookies["CheckCode"] == null)
{
lblMessage.Text = "您的瀏覽器設定禁止使用 Cookies,您必須設定瀏覽器允許使用 Cookies 選項後才能參與投票。";
lblMessage.Visible = true;
return;
}
//檢查驗證碼是否打的正確
if (String.Compare(Request.Cookies["CheckCode"].Value, txtCheckCode.Text, true) != 0)
{
lblMessage.Text = "圖片驗證碼錯誤";
lblMessage.Visible = true;
}
else
{
//.寫入DB 的相關動作
}
//清除目前輸入
txtCheckCode.Text = “”;
最後就能產生出
至於要調字的顏色、大小、變形字,檢驗字八碼,都可以在註解中找到要修改的地方,就分享給大家試試看。
2008/6/4 補上完整專案,有興趣的朋友,就直接下載下去研究。
CaptchaPractice.rar