.NET使用"一般处理程序" 生成验证码!

新建“一般处理程序”

HTML 代码

 1 ASP.NET用一般处理程序生成验证码 
 2 
 3 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 
 4 <html> 
 5 <head> 
 6 <title></title> 
 7 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> 
 8 <script type="text/javascript"> 
 9 function change() { 
10 var imgNode = document.getElementById("vimg"); 
11 imgNode.src = "WaterMark.ashx?t=" + (new Date()).valueOf(); // 这里加个时间的参数是为了防止浏览器缓存的问题 
12 } 
13 </script> 
14 </head> 
15 <body> 
16 <img src="WaterMark.ashx" id="vimg" alt="" /><input type="button" value="换一张图片" onclick="change()" /> 
17 </body> 
18 </html>

 一般处理程序WaterMark.ashx的代码:

C#代码

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

 

posted @ 2014-12-18 11:05  苏剑波  阅读(221)  评论(0编辑  收藏  举报