Good morning ASP programmers,
I have a DataList in which I'd like to modify the way it is formatted. I imagine that I could use the CssClass, but I have not found a good explaination on how it is to be used. Here is my code:
<asp:DataList ID="dlNextOutings" runat="server" ShowFooter="False" ShowHeader="False">
<ItemTemplate>
<asp:Label ID="lblFDate" runat="server" Text='<%# Eval("FDate") %>' Font Bold="True"></asp:Label>
we play at
<asp:Label ID="lblCourse" runat="server" Text='<%# Eval("Course") %>'></asp:Label>
- tee time is
&nbs ...
Go to the complete details ...