how use ASP.NET_SessionId cookies to check timeout for 2 different web applications
- by user553858
Hi All
I am developing 2 web applications based on "ASP.NET_SessionId" cookies to check session timeout and also to logout :
protected void Session_Start(object sender, EventArgs e)
{
if (Context.Session != null)
{
//check the IsNewSession value, this will tell us if the session has been reset
if…