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.
<STYLE>
tr.white {background-color: #FFFFFF;}
tr.grey {background-color: #DDDDDD;}
</STYLE>
</HEAD>
<BODY>
<TABLE>
<%
strColour = "white"
While NOT objRS.EOF
If strColour = "white" Then
strColour = "grey"
Else
strColour = "white"
End If
Response.Write "<TR CLASS=" & strColour & "><TD>" & objRS("Info") & "</TD></TR>" & vbcrlf
objRS.MoveNext
Wend
%>
</TABLE>