Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<script language="javascript">
window.history.forward(1);
</script>
<body onLoad="history.go(+1)">
<script>
function KeyCache() {
if (window.event && window.event.keyCode == 8) {
window.event.keyCode = 123; //Replaces with F12 button. (Does nothing in IE)
}
}
document.onkeydown=KeyCache();
</script>
Dim pagenames, thispage, pageindex
pagenames = new Array("page1.asp", "page2.asp", "page3.asp", "page4.asp")
'thispage = get this page URL from server variables
pageindex = 0
While pagenames(pageindex) <> Session("pagename")
pageindex = pageindex + 1
Wend
If thispage <> pagenames(pageindex + 1) Then
Response.Redirect pagenames(pageindex + 1)
End If
Session("pagename") = thispage
'rest of page