Hi, Peter-
First off, thanks for responding. As to your question, yes, and
session is working perfectly within the handler itself. I have gotten
a bit further with this problem...in my global.asax file's
Session_Start event I have the following:
HttpContext ctx = HttpContext.Current;
MapEngineHttpHandler.DTMapEngineHandler mapHandler = new
MapEngineHttpHandler.DTMapEngineHandler();
mapHandler.ProcessRequest(ctx);
Session["NewSessionVariable"]= ctx.Session["SessionID"];
So I am able to retrieve the SessionID session variable that I created
in the Handler, but I am not able to retrieve the value of
Session["NewSessionVariable"] on any other pages. SessionState mode is
currently InProc....
Thanks
Ty
Peter wrote:
> Your handler implements IRequiresSessionState?
>
>
> --
> Co-founder, Eggheadcafe.com developer portal:
> http://www.eggheadcafe.com
> UnBlog:
> http://petesbloggerama.blogspot.com
>
>
>
>
> "Ty" wrote:
>
> > Hi, All-
> >
> > I have a custom httphandler that outputs an image to the browser based
> > upon some user input. I'd like to be able to store information about
> > that image in session and have them accessible to all aspx pages in my
> > project. Session state seems to be working normally in my handler,
> > however, the session variables are not accessible anywhere outside the
> > handler itself. Any ideas?
> >
> >
> > Thanks in advance
> > Ty
> >
> >