Click here to Skip to main content
16,019,199 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
when user click on browser refresh button or(f5) key ,i want to that page will not go for reload (refresh)
only that time, no when press any button, i can want to this action any button only when press refresh on browser button(f5).
Posted
Comments
[no name] 25-Jul-11 8:45am    
Please restate the question and make it more clear
Uday P.Singh 25-Jul-11 8:48am    
what are you trying to achieve?

Question is not clear. If I understand your question correctly, you cannot prevent a page refresh. It is a functionality of the browser and you cannot control it through code in your page.
 
Share this answer
 
When you "refresh" a page, a page-load is always going to happen. That's the nature of a "refresh". Beyond that, your question is impossible to answer with any accuracy because nobody here understands it.
 
Share this answer
 
Comments
[no name] 25-Jul-11 9:29am    
He/she somehow wants to disable the Refresh button on the browser when users navigate to his page.
1. you can avoid refreshing page when user press the F5 using Java Script(Using Key Code of the F5 button).
document.attachEvent("onkeydown", my_onkeydown_handler);
function my_onkeydown_handler() {
    switch (event.keyCode) {
        case 116 : // 'F5'
            event.returnValue = false;
            event.keyCode = 0;
            window.status = "We have disabled F5";
            break;
    }
}

2. you can avoid refreshing page when user click the right mouse button and selects the Reload option by Java script(We can find the mouse button in JS)Restrict RIGHT CLICK.
3. To avoid the browser refresh(Need to open the page in pop-up).

These are not solutions. better tell me reason to avoid refresh. may You have a design flaw with your page.

Thanks
Karthik P
 
Share this answer
 
v3

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900