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="jump">
<select name="menu" onChange="location=document.jump.menu.options[document.jump.menu.selectedIndex].value;" value="GO">
[COLOR=blue]<option value="[URL unfurl="true"]http://www.apple.com">Apple</option>[/URL]
<option value="[URL unfurl="true"]http://www.bear.com">Bear</option>[/URL]
<option value="[URL unfurl="true"]http://www.coat.com">Coat</option>[/URL][/color]
</select>
</form>
<%
[COLOR=gray]'Code up here to open the recordset[/color]
%>
[COLOR=gray]<!-- Here's the HTML to start the menue -->[/color]
<form name="jump">
<select name="menu" onChange="location=document.jump.menu.options[document.jump.menu.selectedIndex].value;" value="GO">
<%
[COLOR=gray]'Now the code to create the options[/color]
Do While Not rs.EOF
%>
<option value="<%=rs("LinkURL")%>"><%=rs("LinkName")%></option>
<%
Loop
%>
[COLOR=gray]<!-- Now the HTML to close the menu -->[/color]
</select>
</form>
<%
[COLOR=gray]'Here you close the recordset and possibly the connection[/color]
%>
Do While Not rs.EOF
%>
<option value="<%=rs("RecID")%>"><%=rs("RecID")%></option>
<%
Loop
%>
<%
Do While Not rs.EOF
%>
<option value="[COLOR=blue]PrintCard.asp?ID=[/color]<%=rs("RecID")%>"><%=rs("RecID")%></option>
<%
Loop
%>