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.
<% @language="vbscript" %>
<SCRIPT LANGUAGE="VBScript">
sub PopupBox(Title,Msg)
PopupBox=MsgBox(msg, vbOKOnly, Title)
End sub
</SCRIPT>
<%
response.write "Test page" & "<br>"
%>
<script>
PopupBox "blah", "just testing"
</script>
<%
response.write "end"
%>
<html>
<head>
<script language="javascript">
alert ("Testing")
window.location = "add_logon.asp"
</script>
</head>
<body>
</body>
</html>
<html>
<head>
<script language="vbscript">
msg ("Testing")
window.location.href = "add_logon.asp"
</script>
</head>
<body>
</body>
</html>