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.
<form name="frmName" action="redirect.asp" method="post">
<select name="location">
<option value="http://location1.htm">Location 1</option>
<option value="http://location2.htm">Location 2</option>
.
.
</select>
<input type="submit" name="submit" value="Submit" />
</form>
<%
location = Request.Form("location")
if (location = "") then
Response.Write ("No location given")
else
Response.Redirect location
end if
%>