Hi anigopal,
You would need to write your own JavaScript to do this, as Adam suggested.
This will auto postback the page every 15 minutes, you might want to look at doing this via AJAX so as not to inturupt the user.
<script type="text/javascript">
setTimeOut("document.forms[0].submit();", 900000);
</script>
Ady