亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

C#驗(yàn)證碼的創(chuàng)建與使用示例

 更新時(shí)間:2017年01月25日 09:33:23   作者:pan_junbiao  
這篇文章主要介紹了C#驗(yàn)證碼的創(chuàng)建與使用方法,結(jié)合實(shí)例形式較為詳細(xì)的分析了C#驗(yàn)證碼的創(chuàng)建、驗(yàn)證等操作步驟與相關(guān)技巧,需要的朋友可以參考下

本文實(shí)例講述了C#驗(yàn)證碼的創(chuàng)建與使用方法。分享給大家供大家參考,具體如下:

1、C#創(chuàng)建驗(yàn)證碼

① 創(chuàng)建獲取驗(yàn)證碼頁(yè)面(ValidateCode.aspx)

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
  <title>獲取驗(yàn)證碼</title>
</head>
<body>
  <form id="form1" runat="server">
    <div>獲取驗(yàn)證碼</div>
  </form>
</body>
</html>

② 編寫(xiě)獲取驗(yàn)證碼代碼(ValidateCode.aspx.cs)

/// <summary>
/// 驗(yàn)證碼類(lèi)型(0-字母數(shù)字混合,1-數(shù)字,2-字母)
/// </summary>
private string validateCodeType = "0";
/// <summary>
/// 驗(yàn)證碼字符個(gè)數(shù)
/// </summary>
private int validateCodeCount = 4;
/// <summary>
/// 驗(yàn)證碼的字符集,去掉了一些容易混淆的字符
/// </summary>
char[] character = { '2', '3', '4', '5', '6', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'J', 'K', 'L', 'M', 'N', 'P', 'R', 'S', 'T', 'W', 'X', 'Y' };
protected void Page_Load(object sender, EventArgs e)
{
  //取消緩存
  Response.BufferOutput = true;
  Response.Cache.SetExpires(DateTime.Now.AddMilliseconds(-1));
  Response.Cache.SetCacheability(System.Web.HttpCacheability.NoCache);
  Response.AppendHeader("Pragma", "No-Cache");
  //獲取設(shè)置參數(shù)
  if (!string.IsNullOrEmpty(Request.QueryString["validateCodeType"]))
  {
    validateCodeType = Request.QueryString["validateCodeType"];
  }
  if (!string.IsNullOrEmpty(Request.QueryString["validateCodeCount"]))
  {
    int.TryParse(Request.QueryString["validateCodeCount"], out validateCodeCount);
  }
  //生成驗(yàn)證碼
  this.CreateCheckCodeImage(GenerateCheckCode());
}
private string GenerateCheckCode()
{
  char code ;
  string checkCode = String.Empty;
  System.Random random = new Random();
  for (int i = 0; i < validateCodeCount; i++)
  {
    code = character[random.Next(character.Length)];
    // 要求全為數(shù)字或字母
    if (validateCodeType == "1")
    {
      if ((int)code < 48 || (int)code > 57)
      {
        i--;
        continue;
      }
    }
    else if (validateCodeType == "2")
    {
      if ((int)code < 65 || (int)code > 90)
      {
        i--;
        continue;
      }
    }
    checkCode += code;
  }
  Response.Cookies.Add(new System.Web.HttpCookie("CheckCode", checkCode));
  this.Session["CheckCode"] = checkCode;
  return checkCode;
}
private void CreateCheckCodeImage(string checkCode)
{
  if (checkCode == null || checkCode.Trim() == String.Empty)
    return;
  System.Drawing.Bitmap image = new System.Drawing.Bitmap((int)Math.Ceiling((checkCode.Length*15.0+40)), 23);
  System.Drawing.Graphics g = System.Drawing.Graphics.FromImage(image);
  try
  {
    //生成隨機(jī)生成器
    Random random = new Random();
    //清空?qǐng)D片背景色
    g.Clear(System.Drawing.Color.White);
    //畫(huà)圖片的背景噪音線
    for (int i = 0; i < 25; i++)
    {
      int x1 = random.Next(image.Width);
      int x2 = random.Next(image.Width);
      int y1 = random.Next(image.Height);
      int y2 = random.Next(image.Height);
      g.DrawLine(new System.Drawing.Pen(System.Drawing.Color.Silver), x1, y1, x2, y2);
    }
    System.Drawing.Font font = new System.Drawing.Font("Arial", 14, (System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic));
    System.Drawing.Drawing2D.LinearGradientBrush brush = new System.Drawing.Drawing2D.LinearGradientBrush(new System.Drawing.Rectangle(0, 0, image.Width, image.Height), System.Drawing.Color.Blue, System.Drawing.Color.DarkRed, 1.2f, true);
    int cySpace = 16;
    for (int i = 0; i < validateCodeCount; i++)
    {
      g.DrawString(checkCode.Substring(i, 1), font, brush, (i + 1) * cySpace, 1);
    }
    //畫(huà)圖片的前景噪音點(diǎn)
    for (int i = 0; i < 100; i++)
    {
      int x = random.Next(image.Width);
      int y = random.Next(image.Height);
      image.SetPixel(x, y, System.Drawing.Color.FromArgb(random.Next()));
    }
    //畫(huà)圖片的邊框線
    g.DrawRectangle(new System.Drawing.Pen(System.Drawing.Color.Silver), 0, 0, image.Width - 1, image.Height - 1);
    System.IO.MemoryStream ms = new System.IO.MemoryStream();
    image.Save(ms, System.Drawing.Imaging.ImageFormat.Gif);
    Response.ClearContent();
    Response.ContentType = "image/Gif";
    Response.BinaryWrite(ms.ToArray());
  }
  finally
  {
    g.Dispose();
    image.Dispose();
  }
}

2、驗(yàn)證碼的使用

① 驗(yàn)證碼的前段顯示代碼

復(fù)制代碼 代碼如下:
<img src="/ValidateCode.aspx?ValidateCodeType=1&0.011150883024061309" onclick="this.src='/ValidateCode.aspx?ValidateCodeType=1&'+Math.random();" id="imgValidateCode" alt="點(diǎn)擊刷新驗(yàn)證碼" title="點(diǎn)擊刷新驗(yàn)證碼" style="cursor: pointer;">

② 創(chuàng)建驗(yàn)證碼測(cè)試頁(yè)面(ValidateTest.aspx)

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
  <title>驗(yàn)證碼測(cè)試</title>
</head>
<body>
  <form id="form1" runat="server">
  <div>
    <input runat="server" id="txtValidate" />
    <img src="/ValidateCode.aspx?ValidateCodeType=1&0.011150883024061309" onclick="this.src='/ValidateCode.aspx?ValidateCodeType=1&'+Math.random();" id="imgValidateCode" alt="點(diǎn)擊刷新驗(yàn)證碼" title="點(diǎn)擊刷新驗(yàn)證碼" style="cursor: pointer;">
    <asp:Button runat="server" id="btnVal" Text="提交" onclick="btnVal_Click" />
  </div>
  </form>
</body>
</html>

③ 編寫(xiě)驗(yàn)證碼測(cè)試的提交代碼(ValidateTest.aspx.cs)

protected void btnVal_Click(object sender, EventArgs e)
{
  bool result = false;  //驗(yàn)證結(jié)果
  string userCode = this.txtValidate.Value; //獲取用戶(hù)輸入的驗(yàn)證碼
  if (String.IsNullOrEmpty(userCode))
  {
    //請(qǐng)輸入驗(yàn)證碼
    return;
  }
  string validCode = this.Session["CheckCode"] as String; //獲取系統(tǒng)生成的驗(yàn)證碼
  if (!string.IsNullOrEmpty(validCode))
  {
    if (userCode.ToLower() == validCode.ToLower())
    {
      //驗(yàn)證成功
      result = true;
    }
    else
    {
      //驗(yàn)證失敗
      result = false;
    }
  }
}

更多關(guān)于C#相關(guān)內(nèi)容感興趣的讀者可查看本站專(zhuān)題:《C#圖片操作技巧匯總》、《C#常見(jiàn)控件用法教程》、《WinForm控件用法總結(jié)》、《C#數(shù)據(jù)結(jié)構(gòu)與算法教程》、《C#面向?qū)ο蟪绦蛟O(shè)計(jì)入門(mén)教程》及《C#程序設(shè)計(jì)之線程使用技巧總結(jié)

希望本文所述對(duì)大家C#程序設(shè)計(jì)有所幫助。

相關(guān)文章

  • C#畫(huà)筆Pen用法實(shí)例

    C#畫(huà)筆Pen用法實(shí)例

    這篇文章主要介紹了C#畫(huà)筆Pen用法,實(shí)例分析了畫(huà)筆Pen繪制圖形的相關(guān)技巧,需要的朋友可以參考下
    2015-06-06
  • C#自定義事件監(jiān)聽(tīng)實(shí)現(xiàn)方法

    C#自定義事件監(jiān)聽(tīng)實(shí)現(xiàn)方法

    這篇文章主要介紹了C#自定義事件監(jiān)聽(tīng)實(shí)現(xiàn)方法,涉及C#事件監(jiān)聽(tīng)的實(shí)現(xiàn)技巧,具有一定參考借鑒價(jià)值,需要的朋友可以參考下
    2015-08-08
  • 深入解析C#中的abstract抽象類(lèi)

    深入解析C#中的abstract抽象類(lèi)

    這篇文章主要介紹了深入解析C#中的abstract抽象類(lèi),包括定義抽象類(lèi)等C#面相對(duì)象編程中的基礎(chǔ)知識(shí),需要的朋友可以參考下
    2016-01-01
  • C# 中的 is 真的是越來(lái)越強(qiáng)大越來(lái)越語(yǔ)義化(推薦)

    C# 中的 is 真的是越來(lái)越強(qiáng)大越來(lái)越語(yǔ)義化(推薦)

    這篇文章主要介紹了C# 中的 is 真的是越來(lái)越強(qiáng)大越來(lái)越語(yǔ)義化,本文給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2020-09-09
  • 深入c# Func委托的詳解

    深入c# Func委托的詳解

    本篇文章是對(duì)c#中的Func委托進(jìn)行了詳細(xì)的分析介紹,需要的朋友參考下
    2013-06-06
  • c#用for語(yǔ)句輸出一個(gè)三角形的方法

    c#用for語(yǔ)句輸出一個(gè)三角形的方法

    這篇文章主要介紹了c#用for語(yǔ)句輸出一個(gè)三角形的方法,可實(shí)現(xiàn)只用一個(gè)for語(yǔ)句來(lái)輸出三角形的功能,需要的朋友可以參考下
    2015-06-06
  • 詳解ASP.NET中Identity的身份驗(yàn)證代碼

    詳解ASP.NET中Identity的身份驗(yàn)證代碼

    這篇文章主要介紹了ASP.NET Identity 的“多重”身份驗(yàn)證代碼,以及實(shí)現(xiàn)的原理講解,需要的朋友參考一下。
    2017-12-12
  • C#中String StringBuilder StringBuffer類(lèi)的用法

    C#中String StringBuilder StringBuffer類(lèi)的用法

    這篇文章給大家簡(jiǎn)單介紹下C#中String StringBuilder StringBuffer三個(gè)類(lèi)的用法,需要的的朋友參考下吧
    2017-05-05
  • C#反射機(jī)制介紹

    C#反射機(jī)制介紹

    這篇文章介紹了C#的反射機(jī)制,文中通過(guò)示例代碼介紹的非常詳細(xì)。對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2022-03-03
  • C#使用Socket實(shí)現(xiàn)本地多人聊天室

    C#使用Socket實(shí)現(xiàn)本地多人聊天室

    這篇文章主要為大家詳細(xì)介紹了C#使用Socket實(shí)現(xiàn)本地多人聊天室,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2022-02-02

最新評(píng)論