In your webpage after signout and pressed back button, the previous session will remain the same. So use the below JavaScript. So that previous session will open.
For example: In our CodeProject.com after signout press back button .. your previous session will remain the same.
<script type="text/javascript">
function noBack()
{
window.history.forward()
}
noBack();
window.onload = noBack;
window.onpageshow = function(evt) { if (evt.persisted) noBack() }
window.onunload = function() { void (0) }
</script>
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.