i'm trying to store some values in the Session from a Handler page, before i do a redirect to a WebForms page, that will pick up the Session values and pre-fill the WebForm:

public class Handler : IHttpHandler
{
   public void ProcessRequest(HttpContext context)
   {
      ...
      context.Session["StackOverflow"] = "overflowing";
      context.Response.Redirect("~/AnotherPage.aspx");
      ...
   }
   ...
 }

Except context.Session object is null.

How do i access Session state from a handler?

link|improve this question

73% accept rate
feedback

3 Answers

up vote 40 down vote accepted

Implement the System.Web.SessionState.IRequiresSessionState interface

public class Handler : IHttpHandler, System.Web.SessionState.IRequiresSessionState 
{   
  public void ProcessRequest(HttpContext context)  
  {      
    context.Session["StackOverflow"] = "overflowing";      
    context.Response.Redirect("~/AnotherPage.aspx");      
  }

}
link|improve this answer
Note: you don't have to actually implement anything, just add the interface to your class. The web-server then sees that you're asking for it, and fills it in. – Ian Boyd Jun 29 '09 at 17:35
2  
Yes which is still implementing the interface but since it's a marker interface there isn't any code we have to write other then the deriviation of the interface. – JoshBerke Jun 29 '09 at 20:33
feedback

implement IRequiresSessionState

link|improve this answer
feedback

Does implementing iRequiresSessionState resolve this?

What about doing an IHttpModule instead and overriding BeginRequest?

    public void Init(HttpApplication application)
    {
        application.BeginRequest += new EventHandler(context_BeginRequest);
    }
link|improve this answer
Yes it does.... – Ian Boyd Jun 29 '09 at 17:37
Does anyone know which is better performance-wise? – Chris Dwyer Sep 16 '09 at 23:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.