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.
<%
Dim strVar
strVar = "Banana"
%>
<html>
<body>
<table>
<tr>
<td>Want a <%=strVar%>?</td>
</tr>
<%
strVar = "Orangutan"
%>
<tr>
<td>How about a <%=strVar%>?</td>
</tr>
</table>
</body>
</html>