Getting Session State in HttpHandlers (ASHX files)

A reminder to myself and others, when you want to get access to your Session State from an ASHX or HttpHandler, you need to implement IReadOnlySessionState:

<% @ webhandler language="C#" class="DownloadHandler" %>

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

public class DownloadHandler : IHttpHandler, IReadOnlySessionState
{
   public bool IsReusable { get { return true; } }
  
   public void ProcessRequest(HttpContext ctx)
   {
       ctx.Response.Write(ctx.Session["fred"]);
   }
}

Tracked by:
http://radio.weblogs.com/0101015/2003/11/27.html#a1253 [Pingback]
Wednesday, November 12, 2003 10:21:42 PM UTC
Or IRequiresSessionState if you need read/write access.
Friday, September 30, 2005 9:34:58 AM UTC
Thanks a lot for this tips :)
pong
Comments are closed.
Disclaimer: The opinions expressed herein are my own personal opinions and do not represent my employer’s view in any way.