ASP.NET:如何从处理程序访问会话?
我尝试在会话中存储一些值Handler 页面 中获取 Session 值并预填充 WebForm
public class Handler : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
...
context.Session["StackOverflow"] = "overflowing";
context.Response.Redirect("~/AnotherPage.aspx");
...
}
...
}
: context.Session
对象为空。
如何从处理程序访问会话状态?
i'm trying to store some values in the Session from a Handler page, before i do a redirect to a WebForms page, that will pick up the Session values and pre-fill the WebForm:
public class Handler : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
...
context.Session["StackOverflow"] = "overflowing";
context.Response.Redirect("~/AnotherPage.aspx");
...
}
...
}
Except context.Session
object is null.
How do i access Session state from a handler?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
实现 System.Web.SessionState.IRequiresSessionState界面
Implement the System.Web.SessionState.IRequiresSessionState interface
实现IRequiresSessionState
Implement
IRequiresSessionState
实施 iRequiresSessionState 是否可以解决此问题?
改为使用 IHttpModule 并重写 BeginRequest 怎么样?
Does implementing iRequiresSessionState resolve this?
What about doing an IHttpModule instead and overriding BeginRequest?