Back button in JavaScript
Go Back using Java Script:-
Here is an article showing that how to redirect to a back page within client side through java script.
Java Script have a method history.back() by which we can go to the just back page in browser through browser cache if cache not removed otherwise from server side.
Here is an article showing that how to redirect to a back page within client side through java script.
Java Script have a method history.back() by which we can go to the just back page in browser through browser cache if cache not removed otherwise from server side.
<asp:LinkButton ID="btnBack"
runat="server"
style="font-size:14px;color: Black ;font-family:Arial;font-weight:bold;" Text="Back" OnClientClick='javascript:history.back(); return false;' />