溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

asp.net MVC在Controller控制器中如何實(shí)現(xiàn)驗(yàn)證碼輸出功能

發(fā)布時(shí)間:2021-06-03 14:01:01 來(lái)源:億速云 閱讀:223 作者:小新 欄目:開(kāi)發(fā)技術(shù)

這篇文章給大家分享的是有關(guān)asp.net MVC在Controller控制器中如何實(shí)現(xiàn)驗(yàn)證碼輸出功能的內(nèi)容。小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過(guò)來(lái)看看吧。

 asp.net mvc項(xiàng)目使用到驗(yàn)證碼,為了讓以前的WebForm代碼能利用上代碼經(jīng)過(guò)稍微的改動(dòng)即可使用代碼如下:

using System;
using System.Collections.Generic;
using System.Web;
using System.Web.Mvc;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Drawing;
namespace Angel.Web.Controllers
{
  public class CheckCodeController : Controller
  {
    //
    // GET: /CheckCode/
    public ActionResult Index()
    {
      this.CreateCheckCodeImage(GenerateCheckCode());
      return View();
    }
    private string GenerateCheckCode()
    {
      int number;
      char code;
      string checkCode = String.Empty;
      System.Random random = new Random();
      for (int i = 0; i < 5; i++)
      {
        number = random.Next();
        if (number % 2 == 0)
          code = (char)('0' + (char)(number % 10));
        else
          code = (char)('A' + (char)(number % 26));
        if (code == '0' || code == 'o' || code == 'L' || code == 'I')
        {
          i = i - 1;
        }
        else
        {
          checkCode += code.ToString();
        }
      }
      // Response.Cookies.Add(new HttpCookie("CheckCode", checkCode));
      Session.Contents["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 * 12.5)), 22);
      Graphics g = Graphics.FromImage(image);
      try
      {
        //生成隨機(jī)生成器
        Random random = new Random();
        //清空?qǐng)D片背景色
        g.Clear(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 Pen(Color.Silver), x1, y1, x2, y2);
        }
        Font font = new System.Drawing.Font("Arial", 12, (System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic));
        System.Drawing.Drawing2D.LinearGradientBrush brush = new System.Drawing.Drawing2D.LinearGradientBrush(new Rectangle(0, 0, image.Width, image.Height), Color.Blue, Color.DarkRed, 1.2f, true);
        g.DrawString(checkCode, font, brush, 2, 2);
        //畫(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, Color.FromArgb(random.Next()));
        }
        //畫(huà)圖片的邊框線
        g.DrawRectangle(new Pen(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();
      }
    }
  }
}

  最后別忘了session的獲取設(shè)置,需要在Global.asax.cs文件中新增如下代碼:

/// <summary>
/// MVC為了獲取session參數(shù)
/// </summary>
public override void Init()
{
  PostAuthenticateRequest += (s, e) => HttpContext.Current.SetSessionStateBehavior(SessionStateBehavior.Required);
  base.Init();
}
void MvcApplication_PostAuthenticateRequest(object sender, EventArgs e)
{
  HttpContext.Current.SetSessionStateBehavior(SessionStateBehavior.Required);
}

html頁(yè)面代碼:

html代碼

<img name="img1" id="img1"  alt="單擊圖片刷新驗(yàn)證碼" src="CheckCode/Index" <br>onclick="JavaSccript:reloadImage('CheckCode/Index');" /><br><script type="text/javascript">
function reloadImage(url) {
document.getElementById("img1").src = url + '?abc=' + Math.random();
}
  </script>

感謝各位的閱讀!關(guān)于“asp.net MVC在Controller控制器中如何實(shí)現(xiàn)驗(yàn)證碼輸出功能”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI