﻿$(function () {
    setInterval(KeepSessionAlive, 900000);
});

function KeepSessionAlive() {
    $.post("/helper/keepSession.ashx", null, function () { });
}  