Can anyone help me figure out how to refresh the page without triggering any posting when I press F5 or Ctrl+F5?
I attempted the following code, but it doesn't seem to be working for me.
$(document).ready(function(){
$(document).keyup(function(ev){
if(ev.keyCode == 116)
window.location.reload("true");
});
});
Appreciate any assistance.