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.
Response.Redirect("page1.asp?load=top")
[b]page1.asp[/b]
<html>
<head>
<%
If Request.QueryString("load") = "top" Then
Response.Write "<script type=""text/javascript"">if(window != top) window.top.location=this.location.href;</script>" & vbcrlf
End If
%>
</head>