﻿$(function() {
   setInterval(KeepSessionAlive, 100000);
});

function KeepSessionAlive() {
    $.get('/Session/KeepAlive', function(data) {
       $('.result').html(data);
    });
} 
