IHttpHanlder 返回空会话
所以我有几个针对不同文件类型的自定义 Http 处理程序。我已经实现了 IRequiredSessionState 标记,但仍然收到 null 的 context.Session ?
您需要以某种方式初始化会话吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否在
Web.config
文件中启用了会话?不,您不需要执行任何特定的初始化:顺便说一下,接口名称是 System.Web.SessionState.IRequiresSessionState,而不是 IRequiredSessionState。
Have you enabled session in your
Web.config
file? No, you don't need to perform any particular initialization:By the way, the interface name is
System.Web.SessionState.IRequiresSessionState
, notIRequiredSessionState
.