We have ASP.Net application. On Normal aspx.cs page I can access session like this,
Convert.ToString(Session[Resources.AMS.SESSION_USERID]);
But in APP_CODE folder, When i try, I can't get session value, it gives NULL!!
Convert.ToInt32(System.Web.HttpContext.Current.Session[Resources.AMS.SESSION_USERID])
What need to done?