我要檢查該會話爲空或空即有些事情是這樣的:檢查會話是否爲空或不
if(Session["emp_num"] != null)
{
if (!string.IsNullOrEmpty(Session["emp_num"].ToString()))
{
//The code
}
}
或者只是
if(Session["emp_num"] != null)
{
// The code
}
因爲有時當我只檢查與:
if (!string.IsNullOrEmpty(Session["emp_num"].ToString()))
{
//The code
}
我面對以下荷蘭國際集團的例外:
空引用例外
看看這個帖子 http://stackoverflow.com/questions/234973/what-is-the-best-way-to-determine-a-session-variable-is-null -or-empty-in-c – Bobby
非常好,非常感謝。 –