码迷,mamicode.com
首页 > 其他好文 > 详细

希望在一般处理程序中通过 Session 保存验证码却无法显示图片?

时间:2015-06-07 17:17:30      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:

using System.Drawing;
using System.Web;
using System.Web.SessionState;

/// <summary>
/// CaptchaHandler 的摘要说明
/// </summary>
public class CaptchaHandler : IHttpHandler, IRequiresSessionState
{

  public void ProcessRequest(HttpContext context)
  {

    // GDI+ 三步 1画布 2为画布创建画笔 3绘制所需素材

    var vCode = CaptchaHelper.CreateRandomCode(5);  //自己封装的扩展方法

    var buffer = CaptchaHelper.DrawImage(vCode, background: Color.White);  //自己封装的扩展方法
    context.Session["vCode"] = vCode;

    context.Response.ContentType = "image/gif";
    context.Response.BinaryWrite(buffer);
  }

  public bool IsReusable { get { return false; } }
}

 

【关键】Handler 要实现 IRequiresSessionState 接口(所在的命名空间 using System.Web.SessionState;)

希望在一般处理程序中通过 Session 保存验证码却无法显示图片?

标签:

原文地址:http://www.cnblogs.com/liqingwen/p/4558547.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!