I am currently refreshing my page with
<script>function timedRefresh(timeoutPeriod){setTimeout('location.reload(true);',timeoutPeriod);}window.onload = timedRefresh(30000);</script>
But I am receiving a POSTDATA warning because it was wanting to resend a previous POST data form. I don't care of the post data is resent. It is not important for this site. I just want some way to refresh the page without the POSTDATA warning popping up.