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.
<asp:DataList ID="dlShowSummary" runat="server" BackColor="White" BorderColor="Black"
BorderStyle="Solid" BorderWidth="1px" CellPadding="3" Font-Size="Small" GridLines="Vertical"
Width="95%" Font-Names="Arial" DataKeyField="codeID">
<FooterStyle BackColor="#CCCCCC" ForeColor="Black" />
<SelectedItemStyle BackColor="#008A8C" Font-Bold="True" ForeColor="White" />
<ItemTemplate>
<asp:Label ID="dllblCodeID" runat="server" Text='<%# Eval("codeID") %>' Visible="false" />
<table width="100%" border="0">
<tr>
<td>
<asp:LinkButton Font-Bold="true" ID="dllnkTitle" runat="server" Text='<%# Eval("codeTitle") %>' CommandName="cmdTitle" />
</td>
</tr>
<tr>
<td>
<asp:Label ID="dllblText" runat="server" Text='<%# FormatDisplay(Eval("codeText")) %>'></asp:Label>
</td>
</tr>
<tr>
<td>
<asp:Label ID="dllblDateEntered" runat="server" Text='<%# Eval("codeDateEntered") %>'></asp:Label>
</td>
</tr>
</table>
</ItemTemplate>
<AlternatingItemTemplate>
<table width ="100%" border="0">
<tr>
<td>
<asp:LinkButton Font-Bold="true" ID="dllnkTitle" runat="server" Text='<%# Eval("codeTitle") %>' CommandName="cmdTitle"></asp:LinkButton>
</td>
</tr>
<tr>
<td>
<asp:Label ID="dllblText" runat="server" Text='<%# Eval("codeText")) %>'></asp:Label>
</td>
</tr>
<tr>
<td>
<asp:Label ID="dllblDateEntered" runat="server" Text='<%# Eval("codeDateEntered") %>'></asp:Label>
</td>
</tr>
</table>
</AlternatingItemTemplate>
<AlternatingItemStyle BackColor="Gainsboro" Font-Bold="False" />
<ItemStyle BackColor="#EEEEEE" ForeColor="Black" Font-Bold="False" Font-Names="Tahoma" />
<HeaderTemplate>
Summary
</HeaderTemplate>
<HeaderStyle BackColor="#88938D" Font-Bold="True" ForeColor="White" />
</asp:DataList>