asp. net MVC implements verification code output function in Controller controller

  • 2021-11-13 01:17:37
  • OfStack

asp. net mvc project uses verification code. In order to make the previous WebForm code use the code after a little change, the code is as follows:


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
      {
        // Generate random generator 
        Random random = new Random();
        // Clear the background color of the picture 
        g.Clear(Color.White);
        // Draw the background noise line of the picture 
        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);
        // Noise points in the foreground of drawing pictures 
        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()));
        }
        // Draw the border line of the picture 
        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();
      }
    }
  }
}

Finally, don't forget the session acquisition settings. You need to add the following code in the Global. asax. cs file:


/// <summary>
/// MVC In order to obtain session Parameter 
/// </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 page code:

html code


<img name="img1" id="img1" style="position:absolute;top:5px;right:36px!important;z-index:1000;" alt=" Click the picture to refresh the verification code " 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>

Summarize


Related articles: