private object getSession(enumSessionName pSessionName) { string strSessionName = pSessionName.ToString(); object result = HttpContext.Current.Session[strSessionName]; return(result); }
private void setSession(enumSessionName pSessionName, object pObjValue) { string strSessionName = pSessionName.ToString(); HttpContext.Current.Session[strSessionName] = pObjValue; }