博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
登陆框中用到的验证码
阅读量:5218 次
发布时间:2019-06-14

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

在登陆框中,用一个图片控件:

          
看不清?

GetCheckCode是JS事件,用来手动刷新验证码:

function GetCheckCode() {
document.getElementById("imgCode").src = "CheckCode.aspx"; }

 

最好,来到重要的验证码生成页面。由上面的引用已经可以看到,CheckCode.aspx是一个页面,而且这个页面的主要职责就是输出一个位图图象。PS.这个页面的前端代码没有任何额外的,就是新建时的默认。

using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Drawing; namespace KeySystem {
public partial class CheckCode : System.Web.UI.Page {
protected void Page_Load(object sender, EventArgs e) {
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(); } Response.Cookies.Add(new HttpCookie("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 {
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); } Font font = new System.Drawing.Font("Arial", 12, System.Drawing.FontStyle.Bold); 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,Brushes.Black,2,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); //输出 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(); } } } }

转载于:https://www.cnblogs.com/oneivan/archive/2011/11/27/2264981.html

你可能感兴趣的文章
第一次冲刺(4)15/5/11
查看>>
php 表单提交方法
查看>>
AvalonDock的基本用法
查看>>
什么是Restful API
查看>>
关于Maven项目引入外部jar包的方式
查看>>
速卖通菜鸟云打印
查看>>
蛮牛第2季- Unity2d游戏开发经典教程
查看>>
数据库顺序查询
查看>>
wkhtmltopdf 参数介绍
查看>>
关于execel单元格中的数字变成文本(左上角带绿色三角形标志)的办法
查看>>
3.Python 文件的游标
查看>>
用户试用调查报告
查看>>
Leetcode Minimum Depth of Binary Tree
查看>>
介绍两种在RHEL 和 CentOS 系统上检查或列出已安装的安全更新的方法
查看>>
maven + eclipse + tomcat 实战JSP
查看>>
不使用存储过程获取Oracle自增序列(sequence)
查看>>
温故而知新 C# 运算符 表达式
查看>>
基于Android的上课助手的概况及第一周冲刺详情
查看>>
poj 2135(最小费用最大流)
查看>>
陶汝坤
查看>>