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

首頁 > 編程 > .NET > 正文

asp.net生成驗證碼(純數(shù)字)

2024-07-10 12:41:27
字體:
供稿:網(wǎng)友
CheckCode.cs
代碼如下:
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 的摘要說明
/// </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>
/// 生成驗證圖片
/// </summary>
/// <param name="checkCode">驗證字符</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();
//隨機輸出噪點
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);
}
//輸出不同字體和顏色的驗證碼字符
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);
}
//畫一個邊框
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>
/// 生成隨機的字母
/// </summary>
/// <param name="VcodeNum">生成字母的個數(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; //記錄上次隨機數(shù)值,盡量避免生產(chǎn)幾個一樣的隨機數(shù)
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 土默特右旗| 万州区| 泌阳县| 安福县| 龙川县| 两当县| 萨迦县| 常宁市| 阜宁县| 广昌县| 凤冈县| 松溪县| 虎林市| 中阳县| 勐海县| 文山县| 乳源| 卓资县| 教育| 綦江县| 无极县| 涟源市| 宁强县| 南皮县| 当阳市| 昌平区| 兴安盟| 马边| 瓦房店市| 博白县| 荔波县| 新兴县| 枝江市| 景谷| 洛扎县| 大足县| 河北区| 宣武区| 磐安县| 龙南县| 南安市|