码迷,mamicode.com
首页 > 其他好文 > 详细

解决在构造函数中使用Session,Session为null的问题

时间:2016-04-08 18:11:36      阅读:328      评论:0      收藏:0      [点我收藏+]

标签:

问题描述:

public abstract class PageBase : System.Web.UI.Page

在PageBase中如何使用Session???

我直接用 Session["Name"]

提示:只有在配置文件或 Page 指令中将 enableSessionState 设置为 true 时,才能使用会话状态。还请确保在应用程序配置的 <configuration>\<system.web>\<httpModules> 节中包括 System.Web.SessionStateMod 或自定义会话状态模块。

使用 HttpContext.Current.Session["User"] = "";

提示:未将对象引用设置到对象的实例..

如果在页面中使用(这个页面继承自PageBase)

使用 Session["Name"] 或者 HttpContext.Current.Session["User"] = "";都没有问题

我自己在web.config中设置SessionState为<sessionState mode="InProc" timeout="20"/>

 

 

错误原因:在PageBase的构造函数中使用Session

解决办法:

按照Page的创建流程,,,造成了先使用了Session后面才创建Session
现在重写了OnInit  在 base.OnInit后再使用Session 问题解决..

技术分享
protected override void OnInit(EventArgs e)
        {
            base.OnInit(e);
            if (Session["crmService"] != null)
            {
                return (IOrganizationService)Session["crmService"];
            }
            else
            {
                CRMService = CrmServiceHelper.Instance.GetService();
                if (_currentuser == null)
                {
                    //获取当前登陆人
                    WhoAmIRequest request = new WhoAmIRequest();
                    WhoAmIResponse response = (WhoAmIResponse)CRMService.Execute(request);
                    Guid userId = response.UserId;
                    _currentuser = getUserById(userId.ToString());
                }
                Session["crmService"] = CRMService;
                return GetCRMService();
            }
        }
View Code

 

解决在构造函数中使用Session,Session为null的问题

标签:

原文地址:http://www.cnblogs.com/servant/p/5369110.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!