I am trying to unload my web page whenever I move to another page in my site so that it will reload if I ever come back to it say by using the back button. Can I do this? I want to do this because my Session variable is updated to a new value in my ASP when the page loads.
I tried what is below with no luck:
<SCRIPT language="VBScript">
Function document_onBlur()
document.close()
End Function
</SCRIPT>
I heard something about maybe using a querystring but don't really know what to do with it.
I tried what is below with no luck:
<SCRIPT language="VBScript">
Function document_onBlur()
document.close()
End Function
</SCRIPT>
I heard something about maybe using a querystring but don't really know what to do with it.