i have an asp.net mvc app which have quite a few hidden inputs to keep values around and formatting their names so that i can use the Model binding later when i submit the f
I guess you can reset the hidden fields as soon the page is loaded.
<script type="text/javascript">
$(function() {
$("input[type=hidden]").val("");
});
</script>
This code is executed when you hit "back".
my boss found the answer, it was a simple autocomplete="off" added to the input attributes, although vwd will flag it as an error :)