Hello All,
I have a logout button on my website that is coded
<INPUT id=but1 name=but1 type=button onClick="self.location.href='logout.asp'" value="Logout"
When the user clicks it it takes them to the logout page. Well, on the logout page I have
SESSION.ABANDON
in the code. However, once the user clicks the back button, it simply takes them back to the protected page. Is there coding that will prevent this from happening. Once the user logs out, I don't want them to be able to click back again and view the pages they had to be logged in to see.
I've googled this, and I can't seem to find anything that will work.