Hi all-
I have a bit of a sticky problem. I've created a custom http handler, following the article:
So, I have a page that, in its Page_Load, adds some stuff to the session with the syntax:
Page.Session("NewKey") = __(NewObject)__
Then, I cause the http handler to be called (also from Page_Load) by using dostuff.sync?myparam=___
So, my http handler seems to work fine, but it doesn't get the session information I added with Page.Session(...)...
It implements IReadOnlySessionState, and I've traced the entire execution- the keys are present if I check the session from the page, but they all disappear from the http request context's session while the httphandler is executing.
Anyone have any thoughts?
Thanks!
I have a bit of a sticky problem. I've created a custom http handler, following the article:
So, I have a page that, in its Page_Load, adds some stuff to the session with the syntax:
Page.Session("NewKey") = __(NewObject)__
Then, I cause the http handler to be called (also from Page_Load) by using dostuff.sync?myparam=___
So, my http handler seems to work fine, but it doesn't get the session information I added with Page.Session(...)...
It implements IReadOnlySessionState, and I've traced the entire execution- the keys are present if I check the session from the page, but they all disappear from the http request context's session while the httphandler is executing.
Anyone have any thoughts?
Thanks!