首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > .NET Framework >

未将对象引用设置到对象的实例,该怎么处理

2013-10-21 
未将对象引用设置到对象的实例 string userName Session[name].ToString()DB.BLL.DBManager showsour

未将对象引用设置到对象的实例
 string userName = Session["name"].ToString();
            DB.BLL.DBManager showsource = new DB.BLL.DBManager();
            DataSet ds = new DataSet();
            ds = showsource.ShowSource(userName);
            if (ds != null)
            {
                GridView1.DataSource = ds;
            }
 不懂怎么解决
[解决办法]
Session["name"]为空
[解决办法]
判断Session["name"]为空就不走下去啦
[解决办法]


if(Session["name"] != null)
{
            string userName = Session["name"].ToString();
            DB.BLL.DBManager showsource = new DB.BLL.DBManager();
            DataSet ds = new DataSet();
            ds = showsource.ShowSource(userName);
            if (ds != null)
            {
                GridView1.DataSource = ds;
            }
}

热点排行