会话null异常错误 [英] session null exception error

查看:66
本文介绍了会话null异常错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

海,

我正在使用会话变量.但是,当会话为null时,将显示null引用错误.如何在if循环中检查会话.

问候,
Manu.

Hai,

I am working with session variable. But, when the session is in null null reference error is showing . How to check session in if loop.

Regards,
Manu.

推荐答案

在访问会话属性之前检查它们是否为空
例如if(Session["sesloginId"] != null)
Check if session attributes are not null before accessing them
e.g. if (Session["sesloginId"] != null)


if (Session["sesloginId"].ToString() != "")
                {
                  }


在要检索会话值的其他页面中,只需在页面加载事件if(Session.Count> 0)
中写入 {
并在此处写下您的会话值
}
in other pages which you want to retrieve session value just write in page load event if(Session.Count>0)
{
and write your session value here
}


这篇关于会话null异常错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆