网站添加验证码,主要为防止机器人程序批量注册,或对特定的注册用户用特定程序暴力破解方式,以进行不断的登录、灌水等危害网站的操作。验证码被广泛应用在注册、登录、留言等提交信息到服务器端处理的页面中。

     在ASP.NET网站中应用验证码是很容易的,网上有很多的解决方案。最近在做一个OA项目,因系统采用的ASP.NET MVC框架,同样在登录页中需用到验证码,故需将原来在ASP.NET网站中使用的验证码移植到ASP.NET MVC中。

     原ASP.NET网站用来生成验证码的类文件ValidateCode.cs:

using System;using System.Drawing;using System.Drawing.Imaging;using System.Web.UI;using System.Drawing.Drawing2D;using System.IO;namespace SeniOA.MVC{    /// <summary>    /// 生成验证码的类    /// </summary>    public class ValidateCode    {        public ValidateCode()        {        }        /// <summary>        /// 验证码的最大长度        /// </summary>        public int MaxLength        {            get { return 10; }        }        /// <summary>        /// 验证码的最小长度        /// </summary>        public int MinLength        {            get { return 1; }        }        /// <summary>        /// 生成验证码        /// </summary>        /// <param name="length">指定验证码的长度</param>        /// <returns></returns>        public string CreateValidateCode(int length)        {            int[] randMembers = new int[length];            int[] validateNums = new int[length];            string validateNumberStr = "";            //生成起始序列值            int seekSeek = unchecked((int)DateTime.Now.Ticks);            Random seekRand = new Random(seekSeek);            int beginSeek = (int)seekRand.Next(0, Int32.MaxValue - length * 10000);            int[] seeks = new int[length];            for (int i = 0; i < length; i++)            {                beginSeek += 10000;                seeks[i] = beginSeek;            }            //生成随机数字            for (int i = 0; i < length; i++)            {                Random rand = new Random(seeks[i]);                int pownum = 1 * (int)Math.Pow(10, length);                randMembers[i] = rand.Next(pownum, Int32.MaxValue);            }            //抽取随机数字            for (int i = 0; i < length; i++)            {                string numStr = randMembers[i].ToString();                int numLength = numStr.Length;                Random rand = new Random();                int numPosition = rand.Next(0, numLength - 1);                validateNums[i] = Int32.Parse(numStr.Substring(numPosition, 1));            }            //生成验证码            for (int i = 0; i < length; i++)            {                validateNumberStr += validateNums[i].ToString();            }            return validateNumberStr;        }        /// <summary>        /// 创建验证码的图片        /// </summary>        /// <param name="containsPage">要输出到的page对象</param>        /// <param name="validateNum">验证码</param>        public void CreateValidateGraphic(string validateCode)        {            Bitmap image = new Bitmap((int)Math.Ceiling(validateCode.Length * 12.0), 22);            Graphics g = Graphics.FromImage(image);            try            {                //生成随机生成器                Random random = new Random();                //清空图片背景色                g.Clear(Color.White);                //画图片的干扰线                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 Font("Arial", 12, (FontStyle.Bold | FontStyle.Italic));                LinearGradientBrush brush = new LinearGradientBrush(new Rectangle(0, 0, image.Width, image.Height),                 Color.Blue, Color.DarkRed, 1.2f, true);                g.DrawString(validateCode, font, brush, 3, 2);                //画图片的前景干扰点                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()));                }                //画图片的边框线                g.DrawRectangle(new Pen(Color.Silver), 0, 0, image.Width - 1, image.Height - 1);                //保存图片数据                MemoryStream stream = new MemoryStream();                image.Save(stream, ImageFormat.Jpeg);                //输出图片流                containsPage.Response.Clear();                containsPage.Response.ContentType = "image/jpeg";                containsPage.Response.BinaryWrite(stream.ToArray());            }            finally            {                g.Dispose();                image.Dispose();            }        }        /// <summary>        /// 得到验证码图片的长度        /// </summary>        /// <param name="validateNumLength">验证码的长度</param>        /// <returns></returns>        public static int GetImageWidth(int validateNumLength)        {            return (int)(validateNumLength * 12.0);        }        /// <summary>        /// 得到验证码的高度        /// </summary>        /// <returns></returns>        public static double GetImageHeight()        {            return 22.5;        }    }}

为适合ASP.NET MVC框架,修改其输出图片流的方法CreateValidateGraphic为:

/// <summary>/// 创建验证码的图片/// </summary>/// <param name="containsPage">要输出到的page对象</param>/// <param name="validateNum">验证码</param>public byte[] CreateValidateGraphic(string validateCode){    Bitmap image = new Bitmap((int)Math.Ceiling(validateCode.Length * 12.0), 22);    Graphics g = Graphics.FromImage(image);    try    {        //生成随机生成器        Random random = new Random();        //清空图片背景色        g.Clear(Color.White);        //画图片的干扰线        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 Font("Arial", 12, (FontStyle.Bold | FontStyle.Italic));        LinearGradientBrush brush = new LinearGradientBrush(new Rectangle(0, 0, image.Width, image.Height),         Color.Blue, Color.DarkRed, 1.2f, true);        g.DrawString(validateCode, font, brush, 3, 2);        //画图片的前景干扰点        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()));        }        //画图片的边框线        g.DrawRectangle(new Pen(Color.Silver), 0, 0, image.Width - 1, image.Height - 1);        //保存图片数据        MemoryStream stream = new MemoryStream();        image.Save(stream, ImageFormat.Jpeg);        //输出图片流        return stream.ToArray();    }    finally    {        g.Dispose();        image.Dispose();    }}

在Controller.cs中,添加Action,用来设置将生成的验证码存入Session,并输出验证码图片:

public ActionResult GetValidateCode(){    ValidateCode vCode = new ValidateCode();    string code = vCode.CreateValidateCode(5);    Session["ValidateCode"] = code;    byte[] bytes = vCode.CreateValidateGraphic(code);    return File(bytes, @"image/jpeg");}

调用方式为:在需要使用验证码的页面中,加入<img>标签:
<img id="valiCode" style="cursor: pointer;" src="../Account/GetValidateCode" alt="验证码" />

    效果如下图:


    到于Account/Login这个Action中的处理,只需加入对Session中验证码的判断:

[AcceptVerbs(HttpVerbs.Post)]public ActionResult Login(string userName, string password, bool rememberMe, string returnUrl,string code){    if (Session["ValidateCode"].ToString() != code)    {        ModelState.AddModelError("code", "validate code is error");        return View();    }    //此处验证用户名、密码    if (!ValidateLogOn(userName, password))    {        return View();    }    //验证成功    FormsAuthentication.SetAuthCookie(userName, rememberMe);    if (!String.IsNullOrEmpty(returnUrl))    {        return Redirect(returnUrl);    }    else    {        return RedirectToAction("Index", "Home");    }}

为实现登录页中,点击图片切换验证码,可以登录页中加入此JS代码实现刷新验证码:

<script type="text/javascript" src="http://www.cnblogs.com/Scripts/jquery-1.3.2-vsdoc.js"></script><script type="text/javascript">    $(function() {    $("#valiCode").bind("click", function() {        this.src = "../Account/GetValidateCode?time=" + (new Date()).getTime();        });        //alert("good");    });</script>

至此,ASP.NET MVC中已成功实现验证码功能。

源【http://www.cnblogs.com/senisoft/archive/2009/09/18/1569721.html】

(一)【转】asp.net mvc生成验证码的更多相关文章

  1. Asp.net mvc生成验证码

    1.生成验证码类 using System; using System.Collections.Generic; using System.Linq; using System.Text; using ...

  2. ASP.NET MVC 生成验证码

    using System.Web.Mvc; using System.Drawing; using System; using System.Drawing.Imaging; using Models ...

  3. ASP.Net MVC 生成安全验证码

    ---------html <td>验证码:</td>            <td>                <img src="/Logi ...

  4. ASP.NET MVC生成安全验证码

    html部分: <!DOCTYPE html> <html lang="en"> <head> <meta charset="U ...

  5. ASP.NET MVC5 生成验证码

    1 ValidateCode.cs using System; using System.Drawing; using System.Drawing.Drawing2D; using System.D ...

  6. C#工具:ASP.NET MVC生成图片验证码

    1.复制下列代码,拷贝到控制器中. #region 生成验证码图片 // [OutputCache(Location = OutputCacheLocation.None, Duration = 0, ...

  7. ASP.NET MVC 生成EML文件

    需求: 点发送邮件按钮的时候, 自动在客户端电脑打开默认邮件的窗口,并且把内容和附件都附加上去. 解决方案: 尝试使用过Microsoft.Office.Interop.Outlook 和 MPAI. ...

  8. asp.net mvc 生成条形码

    using System; using System.Collections; using System.Collections.Generic; using System.Drawing; usin ...

  9. Asp.net MVC 生成zip并下载

    前面有生成Excel或Word的示例,所以就不再重新写了. 这里只提供将指定文件以ZIP的方式下载. 创建一个 Zip工具类 public class ZIPCompressUtil { public ...

随机推荐

  1. 手把手教你在命令行(静默)部署oracle 11gR2

    文章目录 环境介绍 linux发行版 cpu.内存以及磁盘空间 敲黑板 关闭防火墙以及selinux 操作系统配置 使用阿里的yum源提速 安装依赖软件 设置用户最大进程数以及最大文件打开数 内核参数 ...

  2. suse 12 二进制部署 Kubernetets 1.19.7 - 第09章 - 部署kubelet组件

    文章目录 1.9.部署kubelet 1.9.0.创建kubelet bootstrap kubeconfig文件 1.9.1.创建kubelet配置文件 1.9.2.配置kubelet为system ...

  3. [文档]运维故障报告template

    RCA的基本概念 根本原因分析技术(root cause analysis,RCA). IOWA州立大学质量管理学院认为,很多公司在设备发生故障后,都能够很快修复, 但难以发现故障的根本原因,所以此故 ...

  4. 目前市面上报表软件下载排名的TOP5

    目前,大部分的工作仍然离不开表格,而且工作表格的呈现更酷.效率要求更高.可以简化复杂的操作,大大提高工作效率.在企业管理中,报表可以以图表等简洁的方式向用户显示数据,从而提高工作效率.许多哦公司紧跟信 ...

  5. 用python写九九乘法表

    用python来写九九乘法表,九九乘法表的结构是这样子的: 第一行是1 * 1 = 1,第二行是1 * 2 = 2 | 2 * 2 = 4...以此类推.注意到没,每一行的第一个乘的数字在从1到当行变 ...

  6. [HITCON 2017]SSRFme

    explode()   字符串转数组,用 ,号分隔数组 @mkdir()    创建目录 @chdir() 改变目录 这两的效果一样,如果在/home/php 目录下,执行mkdir('var') 和 ...

  7. 2020.10.6 ThreadLocal

    在多线程环境下,每个线程都有自己的数据.一个线程使用自己的局部变量比使用全局变量要好,因为局部变量不会被其他线程改变. 但是局部变量也存在问题--在函数调用的时候,传递起来很麻烦: def proce ...

  8. js判断字符串是否为正确的JSON格式及JSON格式化的实现

    判断是否是正确的JSON格式 function isJSON(str) { if (typeof str == 'string') { try { var obj=JSON.parse(str); i ...

  9. LeetCode-056-合并区间

    合并区间 题目描述:以数组 intervals 表示若干个区间的集合,其中单个区间为 intervals[i] = [starti, endi] .请你合并所有重叠的区间,并返回一个不重叠的区间数组, ...

  10. vue的拖拽vuedraggable组件使用方法

    <template>   <div id="app">     <vuedraggable class="wrapper"     ...