国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 編程 > .NET > 正文

asp.net生成純數(shù)字驗(yàn)證碼的方法

2024-07-10 12:54:04
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

在學(xué)習(xí)asp.net之后大家應(yīng)該都知道如何生成驗(yàn)證碼了吧,但是有朋友們會(huì)有疑問(wèn)asp.net怎么生成純數(shù)字驗(yàn)證碼呢?方法是不是一樣?那么我們現(xiàn)在就去看看asp.net生成純數(shù)字驗(yàn)證碼的方法。

CheckCode.cs

復(fù)制代碼 代碼如下:

using System;
using System.Data;
using System.Configuration;
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;
/// <summary>
/// CheckCode 的摘要說(shuō)明
/// </summary>
public class CheckCode
{
public CheckCode()
{
//
// TODO: 在此處添加構(gòu)造函數(shù)邏輯
//
}
public static void DrawImage()
{
CheckCode img = new CheckCode();
HttpContext.Current.Session["CheckCode"] = img.RndNum(4);
img.checkCodes(HttpContext.Current.Session["CheckCode"].ToString());
}
/// <summary>
/// 生成驗(yàn)證圖片
/// </summary>
/// <param name="checkCode">驗(yàn)證字符</param>
private void checkCodes(string checkCode)
{
int iwidth = (int)(checkCode.Length * 13);
System.Drawing.Bitmap image = new System.Drawing.Bitmap(iwidth, 23);
Graphics g = Graphics.FromImage(image);
g.Clear(Color.White);
//定義顏色
Color[] c = { Color.Black, Color.Red, Color.DarkBlue, Color.Green, Color.Orange, Color.Brown, Color.DarkCyan, Color.Purple };
//定義字體
string[] font = { "Verdana", "Microsoft Sans Serif", "Comic Sans MS", "Arial", "宋體" };
Random rand = new Random();
//隨機(jī)輸出噪點(diǎn)
for (int i = 0; i < 50; i++)
{
int x = rand.Next(image.Width);
int y = rand.Next(image.Height);
g.DrawRectangle(new Pen(Color.LightGray, 0), x, y, 1, 1);
}
//輸出不同字體和顏色的驗(yàn)證碼字符
for (int i = 0; i < checkCode.Length; i++)
{
int cindex = rand.Next(7);
int findex = rand.Next(5);
Font f = new System.Drawing.Font(font[findex], 10, System.Drawing.FontStyle.Bold);
Brush b = new System.Drawing.SolidBrush(c[cindex]);
int ii = 4;
if ((i + 1) % 2 == 0)
{
ii = 2;
}
g.DrawString(checkCode.Substring(i, 1), f, b, 3 + (i * 12), ii);
}
//畫(huà)一個(gè)邊框
g.DrawRectangle(new Pen(Color.Black, 0), 0, 0, image.Width - 1, image.Height - 1);
//輸出到瀏覽器
System.IO.MemoryStream ms = new System.IO.MemoryStream();
image.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg);
HttpContext.Current.Response.ClearContent();
//Response.ClearContent();
HttpContext.Current.Response.ContentType = "image/Jpeg";
HttpContext.Current.Response.BinaryWrite(ms.ToArray());
g.Dispose();
image.Dispose();
}
/// <summary>
/// 生成隨機(jī)的字母
/// </summary>
/// <param name="VcodeNum">生成字母的個(gè)數(shù)</param>
/// <returns>string</returns>
private string RndNum(int VcodeNum)
{
string Vchar = "0,1,2,3,4,5,6,7,8,9";
string[] VcArray = Vchar.Split(',');
string VNum = ""; //由于字符串很短,就不用StringBuilder了
int temp = -1; //記錄上次隨機(jī)數(shù)值,盡量避免生產(chǎn)幾個(gè)一樣的隨機(jī)數(shù)
//采用一個(gè)簡(jiǎn)單的算法以保證生成隨機(jī)數(shù)的不同
Random rand = new Random();
for (int i = 1; i < VcodeNum + 1; i++)
{
if (temp != -1)
{
rand = new Random(i * temp * unchecked((int)DateTime.Now.Ticks));
}
int t = rand.Next(VcArray.Length);
if (temp != -1 && temp == t)
{
return RndNum(VcodeNum);
}
temp = t;
VNum += VcArray[t];
}
return VNum;
}
}


再建立一個(gè)引用類(lèi)的頁(yè)面checkCode.aspx前臺(tái)不用寫(xiě)東西,后臺(tái)引用我們創(chuàng)建的類(lèi)的DrawImage()方法即可。

?

復(fù)制代碼 代碼如下:

?


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;
public partial class checkCode : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
CheckCode.DrawImage();
}
}


下面我們?cè)谛枰?yàn)證碼的頁(yè)面引用checkCode.aspx頁(yè)面即可。
前臺(tái)

?

復(fù)制代碼 代碼如下:

?


<asp:TextBox ID="Validator" runat="server" Width="150px" ></asp:TextBox>
<img id="Img1" alt="看不清,請(qǐng)點(diǎn)擊我!" onclick="this.src=this.src+'?'" src="checkCode.aspx"
style="width: 73px; height: 22px" align="left" />
<asp:ImageButton ID="imgBtnLogin" runat="server" ImageUrl="~/Images/Login.GIF"
OnClick="imgBtnLogin_Click" />


后臺(tái)判斷

?

復(fù)制代碼 代碼如下:

?


protected void imgBtnLogin_Click(object sender, ImageClickEventArgs e)
{
if(this.Validator.Text==Session["CheckCode"].ToString())
{
//。。。。
}
else
{
Response.Write("<script>alert('驗(yàn)證碼輸入錯(cuò)誤,請(qǐng)重新輸入!');Location='MumberValidate.aspx'</script>");
return;
}
}

上文中小編為大家介紹了asp.net生成純數(shù)字驗(yàn)證碼的方法,但要注意以上的代碼我們需要根據(jù)實(shí)際情況適當(dāng)?shù)剡M(jìn)行修改,希望本文能給閱讀文章的人一些幫助。

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 开鲁县| 威远县| 临沂市| 临安市| 阳春市| 长春市| 平乐县| 麟游县| 顺义区| 广河县| 山阴县| 石景山区| 昔阳县| 威信县| 梁平县| 射阳县| 临泽县| 嫩江县| 峨眉山市| 辽源市| 曲阜市| 蛟河市| 高平市| 同江市| 大邑县| 光泽县| 泗阳县| 汉沽区| 青铜峡市| 杂多县| 阳朔县| 伽师县| 阿克陶县| 泸溪县| 敖汉旗| 上犹县| 邓州市| 苍山县| 兴安盟| 崇文区| 永宁县|