asp.net MVC 在Controller控制器中实现验证码输出
asp.net mvc项目使用到验证码,为了让以前的WebForm代码能利用上代码经过稍微的改动即可使用代码如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 | using System; using System.Collections.Generic; using System.Web; using System.Web.Mvc; using System.Web.UI; using System.Web.UI.WebControls; using System.Drawing; namespace Angel.Web.Controllers { public class CheckCodeController : Controller { // // GET: /CheckCode/ public ActionResult Index() { this .CreateCheckCodeImage(GenerateCheckCode()); return View(); } private string GenerateCheckCode() { int number; char code; string checkCode = String.Empty; System.Random random = new Random(); for ( int i = 0; i < 5; i++) { number = random.Next(); if (number % 2 == 0) code = ( char )( '0' + ( char )(number % 10)); else code = ( char )( 'A' + ( char )(number % 26)); if (code == '0' || code == 'o' || code == 'L' || code == 'I' ) { i = i - 1; } else { checkCode += code.ToString(); } } // Response.Cookies.Add(new HttpCookie("CheckCode", checkCode)); Session.Contents[ "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 < 25; 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.Silver), x1, y1, x2, y2); } Font font = new System.Drawing.Font( "Arial" , 12, (System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic)); 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, brush, 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(); } } } } |
最后别忘了session的获取设置,需要在Global.asax.cs文件中新增如下代码:
1 2 3 4 5 6 7 8 9 10 11 12 13 | /// <summary> /// MVC为了获取session参数 /// </summary> public override void Init() { PostAuthenticateRequest += (s, e) => HttpContext.Current.SetSessionStateBehavior(SessionStateBehavior.Required); base .Init(); } void MvcApplication_PostAuthenticateRequest( object sender, EventArgs e) { HttpContext.Current.SetSessionStateBehavior(SessionStateBehavior.Required); } |
html页面代码:
1 2 3 | Views html代码 < img name="img1" id="img1" style="position:absolute;top:5px;right:36px!important;z-index:1000;" alt="单击图片刷新验证码" src="CheckCode/Index" <br>onclick="JavaSccript:reloadImage('CheckCode/Index');" />< br >< script type="text/javascript"> |
function reloadImage(url) {
document.getElementById("img1").src = url + '?abc=' + Math.random();
}
</script>
分类:
asp.net
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· 单线程的Redis速度为什么快?
· SQL Server 2025 AI相关能力初探
· AI编程工具终极对决:字节Trae VS Cursor,谁才是开发者新宠?
· 展开说说关于C#中ORM框架的用法!
2015-12-02 做linux运维工程师,必须要掌握以下几个工具