The SessionState is handled by an HttpHandler, and it's possible that your
HttpHandler is called before the SessionState HttpHandler.
By implents the IRequiresSessionState (marker interface), you prevent your
HttpHandler to be called before the SessionState HttpHanlder, and so you can
use the session.
"Ralf Müller" wrote:
hi all!
in my custom HttpHandler HttpContext.Current.Session is not set - why?
greetings, ralf