Click here to Skip to main content
15,896,154 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi Frnds,
I am having two Pages,one is Login and another is Registration Page.After Login it goes to Registration Page,at that if person is click on browser button it should load same registration page(for example check Gmail login and inbox page(back button will reload same inbox page))
Posted

1 solution

http://social.msdn.microsoft.com/Forums/en/csharpgeneral/thread/e89411e9-a15e-489e-b7d2-74dd776cd28e[^]


http://www.dotnetspark.com/kb/1002-handle-back-button-browser.aspx[^]

use below code to access backButton event:

XML
< body onUnload="DoSomethingHere()" >
< script language="javascript" >
DoSomethingHere() {
  history.go(-1);
}
< /script >
 
Share this answer
 
v6
Comments
itsureshuk 15-Dec-12 6:05am    
browser back button friend
StackQ 15-Dec-12 6:06am    
oh!,on the browser back button.Ok.Ok

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