我有一个HTTPHandler,每当请求captcha.ashx页面时,都会向用户生成一个Captcha图像。它的代码很简单:

        CaptchaHandler handler = new CaptchaHandler();
        Random random = new Random();
        string[] fonts = new string[4] { "Arial", "Verdana", "Georgia", "Century Schoolbook" };
        string code = Guid.NewGuid().ToString().Substring(0, 5);
        context.Session.Add("Captcha", code);

        Bitmap imageFile = handler.GenerateImage(code, 100, 70, fonts[random.Next(0,4)]);
        MemoryStream ms = new MemoryStream();
        imageFile.Save(ms, System.Drawing.Imaging.ImageFormat.Png);

        byte[] buffer = ms.ToArray();

        context.Response.ClearContent();
        context.Response.ContentType = "image/png";
        context.Response.BinaryWrite(buffer);
        context.Response.Flush();


然后在我的常规网站上,我得到了以下内容:

...
<img id="securityCode" src="captcha.ashx" alt="" /><br />
<a href="javascript:void(0);" onclick="javascript:refreshCode();">Refresh</a>
...


这完美地工作,只要请求captcha.ashx页面,就会生成图像并将其发送回用户。我的问题是HTTPHandler无法保存会话?
我试图从正常页面找回会话,但是我只有一个例外,说它不存在,所以我打开了Trace以查看哪些会话处于活动状态,并且没有列出HTTPHandler创建的会话(验证码)。

HTTPHandler使用IReadOnlySessionState与会话进行交互。 HTTPHandler是否仅具有读取访问权限,因此不存储会话?

最佳答案

尝试从名称空间实现IRequiresSessionState接口。

检查此链接:http://anuraj.wordpress.com/2009/09/15/how-to-use-session-objects-in-an-httphandler/

09-25 18:51