博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#.NET画验证码与Cookie验证
阅读量:5084 次
发布时间:2019-06-13

本文共 3054 字,大约阅读时间需要 10 分钟。

新建页面Code.aspx 在里面话验证码 后台代码:
 
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Drawing;
public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            CreateCheckCodeImage(GenerateCheckCode());
        }
    }
    // 产生四位随机数的方法
    private string GenerateCheckCode()
    {
        int number;
        char code;
        //表示字符串为空,次字段为只读
        string checkCode = string.Empty;
        Random random = new Random();
        for (int i = 0; i < 4; i++)
        {
            number = random.Next();
            code = (char)('0' + (char)(number % 10));
            checkCode += code.ToString();
        }
        //将验证码保存到cookie中
        Response.Cookies.Add(new HttpCookie("CheckCode", checkCode));
        return checkCode;
    }
    private void CreateCheckCodeImage(string checkCode)
    {
        //当随机数是空的时候或者 去掉空格还是空的时候
        if (checkCode == null || checkCode.Trim() == string.Empty)
            return;
        // 创建位图 4 * 12.5
        System.Drawing.Bitmap image = new System.Drawing.Bitmap((int)Math.Ceiling((checkCode.Length * 12.5)), 22);
        Graphics g = Graphics.FromImage(image);
        try
        {
            //生成随机生成器
            Random random = new Random();
            //清空图片背景色
            g.Clear(Color.White);
            //画图片的毕竟噪音线
            for (int i = 0; i < 2; 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.Black), x1, y1, x2, y2);
            }
            //字体 大小12 加粗
            Font font = new System.Drawing.Font("Arial"12, (System.Drawing.FontStyle.Bold));
            // 线性渐变封装
            System.Drawing.Drawing2D.LinearGradientBrush brush = new System.Drawing.Drawing2D.LinearGradientBrush(new Rectangle(00, image.Width, image.Height), Color.Blue, Color.DarkRed, 1.2ftrue);
            g.DrawString(checkCode, font, brush, 22);
            // 画图片的前景噪点
            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), 00, 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";
            //将一个二进制字符串 写入输出流   ms.ToArray()将整个流内容写入数组
            Response.BinaryWrite(ms.ToArray());
        }
        finally
        {
            // 释放资源
            g.Dispose();
            image.Dispose();
        }
    }
}
展示的页面:
验证码用HTML标签ima表示的 src的路径制定到Code.aspx
当点击图片的时候自动的刷新图片的路径 达到更换验证码的目的.。是通过js刷新img的src的路径实现的
<img id="Img1" alt="看不清,请点击我!" οnclick="this.src=this.src+'?'" src="Code.aspx" style="width: 73px; height: 22px" align="left" />

验证页面的后台代码:

 

 
 
 
protected 
void Button1_Click(
object sender, EventArgs e)
    {
        
string code = 
this.txtCode.Text;
        
//
从cookie中取出验证码
        HttpCookie cookie = Request.Cookies[
"
CheckCode
"];
        
if (code == cookie.Value.ToString())
        {
            Response.Write(
"
正确
");
        }
        
else
        {
            Response.Write(
"
错误
");
        }
    }
将验证码保存到cookie中:Response.Cookies.Add(new HttpCookie("CheckCode",checkCode));
从 cookie中取出验证码:HttpCookie cookie = Request.Cookies["CheckCode"];

 

转载于:https://www.cnblogs.com/majunfeng/archive/2011/11/11/3933813.html

你可能感兴趣的文章
osg ifc ifccolumn
查看>>
C++ STL partial_sort
查看>>
3.0.35 platform 设备资源和数据
查看>>
centos redis 安装过程,解决办法
查看>>
IOS小技巧整理
查看>>
WebDriverExtensionsByC#
查看>>
我眼中的技术地图
查看>>
lc 145. Binary Tree Postorder Traversal
查看>>
sublime 配置java运行环境
查看>>
在centos上开关tomcat
查看>>
重启rabbitmq服务
查看>>
正则表达式(进阶篇)
查看>>
无人值守安装linux系统
查看>>
【传道】中国首部淘宝卖家演讲公开课:农业本该如此
查看>>
jQuery应用 代码片段
查看>>
MVC+Servlet+mysql+jsp读取数据库信息
查看>>
黑马程序员——2 注释
查看>>
用OGRE1.74搭建游戏框架(三)--加入人物控制和场景
查看>>
转化课-计算机基础及上网过程
查看>>
android dialog使用自定义布局 设置窗体大小位置
查看>>