So i have a couple of custom Http Handlers for different file types. I have implemented the IRequiredSessionState marker, but still recieving context.Session as null?
Do you need to initialize the Session somehow?
So i have a couple of custom Http Handlers for different file types. I have implemented the IRequiredSessionState marker, but still recieving context.Session as null?
Do you need to initialize the Session somehow?
Have you enabled session in your Web.config
file? No, you don't need to perform any particular initialization:
<sessionState mode="InProc" />
By the way, the interface name is System.Web.SessionState.IRequiresSessionState
, not IRequiredSessionState
.