.NET使用一般处理程序生成验证码
一般处理程序生成随机生成的验证码图片,并把验证码存储到Session中。
HTML页面的img地址为生成验证码的处理程序。
HTML页面:
<script type="text/javascript">
function changeCode() {
var imgCode = document.getElementById("imgCode");
imgCode.src = "../handler/WaterMark.ashx?t=" + (new Date()).valueOf(); //这里加个时间的参数是为了防止浏览器缓存的问题
}
</script>
验证码:<img src="../handler/WaterMark.ashx" id="imgCode" alt=" " onclick="changeCode()" />
当点击验证码图片的时候,刷新验证码。
一般处理程序WaterMark.ashx代码:
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Web;
5 using System.Web.Services;
6 using System.Drawing;
7 using System.Drawing.Drawing2D;
8 using System.Web.SessionState;
9
10 namespace Web.handler
11 {
12 /// <summary>生成验证码图像
13 ///
14 /// </summary>
15 [WebService(Namespace = "http://tempuri.org/")]
16 [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
17 public class WaterMark : IHttpHandler, IRequiresSessionState // 要使用session必须实现该接口,记得要导入System.Web.SessionState命名空间
18 {
19
20
21 public void ProcessRequest(HttpContext context)
22 {
23 string checkCode = GetCode(5); // 产生5位随机字符
24 context.Session["Code"] = checkCode; //将字符串保存到Session中,以便需要时进行验证
25 System.Drawing.Bitmap image = new System.Drawing.Bitmap(70, 22);
26 Graphics g = Graphics.FromImage(image);
27 try
28 {
29 //生成随机生成器
30 Random random = new Random();
31
32 //清空图片背景色
33 g.Clear(Color.White);
34
35 // 画图片的背景噪音线
36 int i;
37 for (i = 0; i < 25; i++)
38 {
39 int x1 = random.Next(image.Width);
40 int x2 = random.Next(image.Width);
41 int y1 = random.Next(image.Height);
42 int y2 = random.Next(image.Height);
43 g.DrawLine(new Pen(Color.Silver), x1, y1, x2, y2);
44 }
45
46 Font font = new System.Drawing.Font("Arial", 12, (System.Drawing.FontStyle.Bold));
47 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);
48 g.DrawString(checkCode, font, brush, 2, 2);
49
50 //画图片的前景噪音点
51 g.DrawRectangle(new Pen(Color.Silver), 0, 0, image.Width - 1, image.Height - 1);
52 System.IO.MemoryStream ms = new System.IO.MemoryStream();
53 image.Save(ms, System.Drawing.Imaging.ImageFormat.Gif);
54 context.Response.ClearContent();
55 context.Response.ContentType = "image/Gif";
56 context.Response.BinaryWrite(ms.ToArray());
57 }
58 finally
59 {
60 g.Dispose();
61 image.Dispose();
62 }
63 }
64
65 /// <summary>
66 /// 产生随机字符串
67 /// </summary>
68 /// <param name="num">随机出几个字符</param>
69 /// <returns>随机出的字符串</returns>
70 private string GetCode(int num)
71 {
72 string str = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";//"的一是在不了有和人这中大为上个国我以要他时来用们生到作地于出就分对成会可主发年动同工也能下过子说产种面而方后多定行学法所民得经十三之进着等部度家电力里如水化高自二理起小物现实加量都两体制机当使点从业本去把性好应开它合还因由其些然前外天政四日那社义事平形相全表间样与关各重新线内数正心反你明看原又么利比或但质气第向道命此变条只没结解问意建月公无系军很情者最立代想已通并提直题党程展五果料象员革位入常文总次品式活设及管特件长求老头基资边流路级少图山统接知较将组见计别她手角期根论运农指几九区强放决西被干做必战先回则任取据处队南给色光门即保治北造百规热领七海口东导器压志世金增争济阶油思术极交受联什认六共权收证改清己美再采转更单风切打白教速花带安场身车例真务具万每目至达走积示议声报斗完类八离华名确才科张信马节话米整空元况今集温传土许步群广石记需段研界拉林律叫且究观越织装影算低持音众书布复容儿须际商非验连断深难近矿千周委素技备半办青省列习响约支般史感劳便团往酸历市克何除消构府称太准精值号率族维划选标写存候毛亲快效斯院查江型眼王按格养易置派层片始却专状育厂京识适属圆包火住调满县局照参红细引听该铁价严";
73 char[] chastr = str.ToCharArray();
74 // string[] source ={ "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "#", "$", "%", "&", "@" };
75 string code = "";
76 Random rd = new Random();
77 int i;
78 for (i = 0; i < num; i++)
79 {
80 //code += source[rd.Next(0, source.Length)];
81 code += str.Substring(rd.Next(0, str.Length), 1);
82 }
83 return code;
84
85 }
86
87 public bool IsReusable
88 {
89 get
90 {
91 return false;
92 }
93 }
94 }
95 }
使用验证码可以防止人家,恶意访问你的网站。以上方法真实有效~呵呵
浙公网安备 33010602011771号