Hi
like you said there is no way to control the back button, I've found some ways to avoid those buttons The one I've like much, because its simplicity, is to put a jscript on the head part od the html in the aspx page
<head>
..........
<script type="text/javascript">
for(var i = 0; i<= history.length; i++) {
history.forward ()
}
</script>
</head>
With that code, every time the user press the IE back button , the IE "jump" to the last page visited, so the user can not see an "older" version of the page
I how it help
Bye
Sergio
|