Używam JQuery do wykonania prostego wywołania AJAX do fikcyjnego modułu obsługi HTTP, który nie robi nic poza utrzymaniem mojej sesji przy życiu:
function setHeartbeat() {
setTimeout("heartbeat()", 5*60*1000); // every 5 min
}
function heartbeat() {
$.get(
"/SessionHeartbeat.ashx",
null,
function(data) {
//$("#heartbeat").show().fadeOut(1000); // just a little "red flash" in the corner :)
setHeartbeat();
},
"json"
);
}
Procedura obsługi sesji może być tak prosta, jak:
public class SessionHeartbeatHttpHandler : IHttpHandler, IRequiresSessionState
{
public bool IsReusable { get { return false; } }
public void ProcessRequest(HttpContext context)
{
context.Session["Heartbeat"] = DateTime.Now;
}
}
Kluczem jest dodanie IRequiresSessionState, w przeciwnym razie sesja nie będzie dostępna (= null). Program obsługi może oczywiście również zwrócić zserializowany obiekt JSON, jeśli niektóre dane powinny zostać zwrócone do wywołującego JavaScript.
Udostępnione przez web.config:
<httpHandlers>
<add verb="GET,HEAD" path="SessionHeartbeat.ashx" validate="false" type="SessionHeartbeatHttpHandler"/>
</httpHandlers>
dodane z balexandre 14 sierpnia 2012 r
Ten przykład podobał mi się tak bardzo, że chcę ulepszyć HTML / CSS i część beatu
Zmień to
//$("#heartbeat").show().fadeOut(1000); // just a little "red flash" in the corner :)
w
beatHeart(2); // just a little "red flash" in the corner :)
i dodaj
// beat the heart
// 'times' (int): nr of times to beat
function beatHeart(times) {
var interval = setInterval(function () {
$(".heartbeat").fadeIn(500, function () {
$(".heartbeat").fadeOut(500);
});
}, 1000); // beat every second
// after n times, let's clear the interval (adding 100ms of safe gap)
setTimeout(function () { clearInterval(interval); }, (1000 * times) + 100);
}
HTML i CSS
<div class="heartbeat">♥</div>
/* HEARBEAT */
.heartbeat {
position: absolute;
display: none;
margin: 5px;
color: red;
right: 0;
top: 0;
}
tutaj jest przykład na żywo tylko dla części bijącej : http://jsbin.com/ibagob/1/