link

All bar one of my web pages no not cache as they are dependant on consistently updating data in an SQL Server 2000 db. Using the IE back button, or client side script...
<CODE>
window.opener.location.reload(false);
</CODE>
...produces an IE confirmation dialogue...
'The page cannot be refreshed without resending the information. Click Retry to send the information again, or click cancel to return to the page you were trying to view'
Is there any way to programatically respond to this dialogue, (with the 'Retry'), or diasable it so User interaction is not required?
Rhys