Create New Session ID – ASP .NET
14 July 2010
1,275 views
No Comment
In ASP .NET a new session id (Session.SessionID) does not create with Session.Abandon or Session.Timeout.
Here is the simple process that would create a new session ID on next page load.
Session.Abandon();
Response.Cookies.Add(new HttpCookie(“ASP.NET_SessionId”, “”));
From Webcosmo Webmaster Forum http://www.webcosmoforums.com/asp/20862-create-new-session-id-asp-net.html










Leave your response!