vote up 0 vote down star

Hi friends,

I found that if you press F5 or refresh from browser window, the last event fires again. For ex. I have clicked on a button the button event is carried out normally, but if i press F5 from browser window then the same event is fired again.

Could someone have any idea?

Thanks for sharing your valuable time.

flag

2 Answers

vote up 0 vote down check

As per NinenthSense, thats how the browser reacts when the user refresh the page.

If you still want to restrict you can go for some javascript like below

//to avaoid pressing F5 key

document.onkeydown = function()
 {
          if(event.keyCode==116) {
          event.keyCode=0;
          event.returnValue = false;
          }
}

//to avoid refresh, using context menu of the browser

document.oncontextmenu = function() {event.returnValue = false;}
link|flag
Thanks buddy!!! – IrfanRaza Oct 20 at 12:36
vote up 0 vote down

It is not a bug. It is by design.

When you press F5/Refresh, it sends the same request to server again.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.