Eu uso JQuery para realizar uma chamada AJAX simples para um manipulador HTTP fictício que não faz nada além de manter minha sessão viva:
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"
);
}
O manipulador de sessão pode ser tão simples quanto:
public class SessionHeartbeatHttpHandler : IHttpHandler, IRequiresSessionState
{
public bool IsReusable { get { return false; } }
public void ProcessRequest(HttpContext context)
{
context.Session["Heartbeat"] = DateTime.Now;
}
}
A chave é adicionar IRequiresSessionState, caso contrário, a Sessão não estará disponível (= null). O manipulador pode, é claro, também retornar um objeto serializado JSON se alguns dados devem ser retornados ao JavaScript de chamada.
Disponibilizado através do web.config:
<httpHandlers>
<add verb="GET,HEAD" path="SessionHeartbeat.ashx" validate="false" type="SessionHeartbeatHttpHandler"/>
</httpHandlers>
adicionado de balexandre em 14 de agosto de 2012
Gostei tanto deste exemplo que quero melhorar com o HTML / CSS e a parte da batida
mude isso
//$("#heartbeat").show().fadeOut(1000); // just a little "red flash" in the corner :)
para dentro
beatHeart(2); // just a little "red flash" in the corner :)
e adicione
// 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 e CSS
<div class="heartbeat">♥</div>
/* HEARBEAT */
.heartbeat {
position: absolute;
display: none;
margin: 5px;
color: red;
right: 0;
top: 0;
}
aqui está um exemplo ao vivo apenas para a parte de espancamento: http://jsbin.com/ibagob/1/