首页 > 编程 > .NET > 正文

asp.net简单生成验证码的方法

2024-07-10 13:29:42
字体:
来源:转载
供稿:网友

这篇文章主要介绍了asp.net简单生成验证码的方法,涉及asp.net生成随机数与绘制图片的相关技巧,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了asp.net简单生成验证码的方法。分享给大家供大家参考,具体如下:

1.新建一个一般处理程序

 

  1. namespace WebApplication1 
  2. /// <summary> 
  3. /// $codebehindclassname$ 的摘要说明 
  4. /// </summary> 
  5. [WebService(Namespace = "http://tempuri.org/")] 
  6. [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] 
  7. public class Handler1 : IHttpHandler, IRequiresSessionState 
  8. public void ProcessRequest(HttpContext context) 
  9. context.Response.ContentType = "image/gif"
  10. //建立Bitmap对象,绘图 
  11. Bitmap basemap = new Bitmap(100, 30); 
  12. Graphics graph = Graphics.FromImage(basemap); 
  13. graph.FillRectangle(new SolidBrush(Color.White), 0, 0, 100, 30); 
  14. Font font = new Font(FontFamily.GenericSerif, 24, FontStyle.Bold, GraphicsUnit.Pixel); 
  15. Random r = new Random(); 
  16. string letters = "ABCDEFGHIJKLMNPQRSTUVWXYZ"
  17. string letter; 
  18. StringBuilder s = new StringBuilder(); 
  19. //添加随机的五个字母 
  20. for (int x = 0; x < 5; x++) 
  21. letter = letters.Substring(r.Next(0, letters.Length - 1), 1); 
  22. s.Append(letter); 
  23. graph.DrawString(letter, font, new SolidBrush(Color.Black), x * 19, r.Next(0, 8)); 
  24. //混淆背景 
  25. Pen linePen = new Pen(new SolidBrush(Color.Black), 2); 
  26. for (int x = 0; x < 6; x++) 
  27. graph.DrawLine(linePen, new Point(r.Next(0, 99), r.Next(0, 29)), new Point(r.Next(0, 99), r.Next(0, 29))); 
  28. //将图片保存到输出流中  
  29. basemap.Save(context.Response.OutputStream, ImageFormat.Gif); 
  30. context.Session["CheckCode"] = s.ToString(); //如果没有实现IRequiresSessionState,则这里会出错,也无法生成图片 
  31. context.Response.End(); 
  32. public bool IsReusable 
  33. get 
  34. return false

2.前台代码

 

 
  1. <html xmlns="http://www.w3.org/1999/xhtml" > 
  2. <head runat="server"
  3. <title></title> 
  4. </head> 
  5. <body> 
  6. <form id="form1" runat="server"
  7. <div> 
  8. <asp:TextBox ID="txtCode" runat="server"></asp:TextBox> 
  9. <img id="imgCode" alt="看不清?点击换一张" src="Handler1.ashx" style="cursor:pointer" onclick="this.src=this.src+'?'" /><br /> 
  10. <asp:Button ID="Button1" runat="server" onclick="Button1_Click" Text="Button" /> 
  11. </div> 
  12. </form> 
  13. </body> 
  14. </html> 

希望本文所述对大家asp.net程序设计有所帮助。


注:相关教程知识阅读请移步到ASP.NET教程频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表