Does any one know how to trace back and forward and refresh button event. I am making web based app. I wanted to restrict user doing (Back-Forward-Refresh) opration on my Web App. Is there any way I can disable or else I can trace the event? Thanks in advance, Ritu
Hi ritu, For Back - Forward buttons try the following code in your pages: <script language="javascript"> if(history.forward(1)) { history.replace(history.forward(1)); } </script> "ritu" escribió en el mensaje news:476F5FFF-1577-46A4-9882-420F63CEB061@microsoft.com... > Does any one know how to trace back and forward and refresh button event. > > I am making web based app. I wanted to restrict user doing > (Back-Forward-Refresh) opration on my Web App. > > Is there any way I can disable or else I can trace the event? > > > Thanks in advance, > Ritu >