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" id="form1">
<input type="text" name="myfield" id="myfield" value="2">
</form>
<br>
<input name="mycontrol" id="mycontrol" type="button" value="button" mycontrol.Visible=(myfield="1")></input>
<%
If myfield="1" Then
%>
<input name="mycontrol" id="mycontrol" type="button" value="button"></input>
<%
End If
%>
<form name="form1" id="form1">
<input type="text" name="myfield" id="myfield" value="2" [b] onchange="this.form.submit()"[/b]>
<br>
<input name="mycontrol" id="mycontrol" type="button" value="button" mycontrol.Visible=[b][red]<%=(Request.Form("myfield")="1")%>[/red][/b]></input>
</form>