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="form1" method="post" action="me.asp">
<Table>
<tr>
<td>
<Select name="List2" size="5" mutiple>
<%While not RsData.EOF%>
<option value="<%=RS("id")%>">
<%=Rs("Name")%>
</option>
<% RS.MoveNext
Loop
%>
</select>
</td>
<td><input type="button" value="Save" onclick="RemoveDupe();">
</tr>
</table>
</form>