Torna al Thread
<asp:DataList ID="DataList1" runat="server" BackColor="White"
BorderColor="#E7E7FF" BorderStyle="None" BorderWidth="1px" CellPadding="3"
DataSourceID="SqlDataSource1" GridLines="Horizontal" Height="26px"
style="font-family: Verdana; font-size: small; text-align: justify"
Width="768px">
<AlternatingItemStyle BackColor="#F7F7F7" Font-Bold="False" Font-Italic="False"
Font-Overline="False" Font-Strikeout="False" Font-Underline="False" />
<EditItemStyle Font-Bold="False" Font-Italic="False" Font-Overline="False"
Font-Strikeout="False" Font-Underline="False" HorizontalAlign="Right" />
<FooterStyle BackColor="#B5C7DE" ForeColor="#4A3C8C" />
<HeaderStyle BackColor="#4A3C8C" Font-Bold="True" ForeColor="#F7F7F7" />
<ItemStyle BackColor="#E7E7FF" ForeColor="#4A3C8C" />
<ItemTemplate>
<asp:Label ID="IdLabel" runat="server" Text='<%# Eval("id") %>' visible=false />
<asp:Image ID="Image1" runat="server" imageurl='<%# "image/reminders.png" %>' Width=24px ImageAlign=Right/>
Docente:
<asp:Label ID="docenteLabel" runat="server" Text='<%# Eval("docente") %>' />
<br />
Commento:
<asp:Label ID="commentoLabel" runat="server" Text='<%# Eval("commento") %>' />
<br />
Data:
<asp:Label ID="dataLabel" runat="server" Text='<%# Eval("data", "{0:d}") %>' />
<br />
<asp:Button ID="Button2" runat="server" Text="Elimina" CommandName="Select" CommandArgument='<%# Eval("ID") %>'/>
</ItemTemplate>
<SelectedItemStyle BackColor="White" Font-Bold="False" ForeColor="#4A3C8C"
Font-Italic="False" Font-Overline="False" Font-Strikeout="False"
Font-Underline="False" HorizontalAlign="Left" />
</asp:DataList>