Oturumumu canlı tutmaktan başka hiçbir şey yapmayan sahte bir HTTP İşleyicisine basit bir AJAX çağrısı gerçekleştirmek için JQuery kullanıyorum:
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"
);
}
Oturum işleyici şu kadar basit olabilir:
public class SessionHeartbeatHttpHandler : IHttpHandler, IRequiresSessionState
{
public bool IsReusable { get { return false; } }
public void ProcessRequest(HttpContext context)
{
context.Session["Heartbeat"] = DateTime.Now;
}
}
Anahtar, IRequiresSessionState'i eklemektir, aksi takdirde Session kullanılamaz (= null). İşleyici, tabii ki, çağıran JavaScript'e bazı verilerin döndürülmesi gerekiyorsa, bir JSON serileştirilmiş nesne de döndürebilir.
Web.config aracılığıyla kullanıma sunulmuştur:
<httpHandlers>
<add verb="GET,HEAD" path="SessionHeartbeat.ashx" validate="false" type="SessionHeartbeatHttpHandler"/>
</httpHandlers>
katma gelen balexandre 2012 14 Ağustos'ta
Bu örnekten o kadar çok hoşlandım ki, HTML / CSS ve vuruş bölümü ile geliştirmek istiyorum.
bunu değiştir
//$("#heartbeat").show().fadeOut(1000); // just a little "red flash" in the corner :)
içine
beatHeart(2); // just a little "red flash" in the corner :)
ve Ekle
// 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 ve CSS
<div class="heartbeat">♥</div>
/* HEARBEAT */
.heartbeat {
position: absolute;
display: none;
margin: 5px;
color: red;
right: 0;
top: 0;
}
işte sadece dayak kısmı için canlı bir örnek : http://jsbin.com/ibagob/1/