2012年8月23日 星期四

判斷Session是否存在,C#版

參考網址參考網址

 有三種方法,我最常用第二種

1.
for(int i=0;i<Session.Count;i++)//判断Session["NO"]是否存在
{
     if(Session.Keys.Get(i).CompareTo("NO")==0)
      strNO=Session["NO"].ToString();
}

2.
if(Session["NO"]==null)

3.
System.Web.HttpContext ct= System.Web.HttpContext.Current;
 if (ct.Session["NO"] == null)

沒有留言:

張貼留言