If I run the code, the
thanks
ISSessionExpire d = sessionid then the array list gets printed. I am facing this problem all of a sudden.Code:
System.Web.SessionState.HttpSessionState curSession = HttpContext.Current.Session;
if (curSession.IsNewSession)
{
if (Utils.SessionHandler.IsSessionExpired == curSession.SessionID)
{
Error oError = new Error(true);
Utils.SessionHandler.AES_Error = oError;
string strVal = "{\"array_list\":{\"list\":[{\"Source\":'SessionExpired'}]}}"; Response.Write(strVal);
}
thanks
Comment