PageBase 中的会话
我在我的 Web 应用程序中使用页面库,其中页面库将在每个页面加载之前被调用。
我计划通过检查会话状态中的值来检查用户是否有效。
但我收到一条错误消息说
仅当在配置文件或 Page 指令中将 enableSessionState 设置为 true 时,才能使用会话状态。另请确保 System.Web.SessionStateModule 或自定义会话状态模块包含在`
那么是否可以从页面库中读取会话值。
添加了代码
public class PageBase : System.Web.UI.Page
{
public PageBase()
{
if (Session["UserID"] == null)
{
Response.Redirect("Home.aspx", false);
}
}
}
谢谢, 杰布利
I am using a page base in my web application where the page base will be called before the page load of every page.
I plan to check if the if the user is valid by checking the value in session state.
But i am getting an error message saying
Session state can only be used when enableSessionState is set to true, either in a configuration file or in the Page directive. Please also make sure that System.Web.SessionStateModule or a custom session state module is included in the `
So is it possible to read the session values from the page base.
Added the code
public class PageBase : System.Web.UI.Page
{
public PageBase()
{
if (Session["UserID"] == null)
{
Response.Redirect("Home.aspx", false);
}
}
}
Thanks,
Jebli
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该错误表明您尚未在 web.config(和/或页面)中启用会话状态。一切都应该按照您的预期进行。您不应该从构造函数中调用代码。
从 Page_load 事件中调用它。
The error indicates that you have not enabled session state in your web.config (and/or page).Everything should work as you expect it to do.You should not call the code from the constructor.
Call it from the Page_load event.