edit , cookie, ...
, AJAX , ( ), .
JavaScript
window.setInterval(function() {
$.get('ping.ashx?nocache=' + (new Date()).getTime(), function() {
return true;
})
}, 30000);
In the Generic Handler, be sure to add the IRequiresSessionState token interface.
Your session cookie names may be the same.
In your web.config (for one of the applications) change the name of the session cookie.
<sessionState
mode="StateServer"
timeout="20"
cookieName="DifferentASP.NET_SessionId"
source
share