<asp:datalist id="myDatalist" runat="server" DataKeyField="id" Width="128px" BorderColor="#DEBA84"
BorderStyle="None" CellSpacing="2" BackColor="#DEBA84" CellPadding="3" BorderWidth="1px" OnEditCommand="myDataList_EditCommand"
GridLines="Both" RepeatColumns="1" HorizontalAlign="Center">
<SelectedItemStyle Font-Bold="True" ForeColor="White" BackColor="#738A9C"></SelectedItemStyle>
<FooterStyle ForeColor="#8C4510" BackColor="#F7DFB5"></FooterStyle>
<ItemStyle ForeColor="#8C4510" BackColor="#FFF7E7"></ItemStyle>
<ItemTemplate>
<TABLE id="myTable" cellSpacing="1" cellPadding="1" width="300" border="0">
<TBODY>
<TR>
<TD colSpan="2">
<asp:Label id="Label1" runat="server" ForeColor="Black" Font-Bold="True" Font-Size="Medium" text='<%# databinder.eval(container.dataItem, "prenom" )%>'>
</asp:Label>
<asp:Label id="Label2" runat="server" ForeColor="Black" Font-Bold="True" Font-Size="Medium" text='<%# databinder.eval(container.dataitem, "nom")%>'>
</asp:Label></TD>
</TR>
<TR>
<TD width="30%">
<asp:Label id="Label3" runat="server" ForeColor="SaddleBrown">Adresse:</asp:Label></TD>
<TD>
<asp:Label id=lbladresse runat="server" ForeColor="Black" text='<%# databinder.eval(container.dataitem, "Adresse" )%>'>
</asp:Label></TD>
</TR>
<TR>
<TD>
<asp:Label id="Label4" runat="server" ForeColor="SaddleBrown">Ville:</asp:Label></TD>
<TD>
<asp:Label id=lblville runat="server" ForeColor="Black" text='<%# databinder.eval(container.dataitem, "Ville" )%>'>
</asp:Label></TD>
</TR>
<TR>
<TD style="HEIGHT: 20px">
<asp:Label id="Label5" runat="server" ForeColor="SaddleBrown">Téléphone:</asp:Label></TD>
<TD style="HEIGHT: 20px">
<asp:Label id=lbltel_maison runat="server" ForeColor="Black" text='<%# databinder.eval(container.dataitem, "tel_maison") %>'>
</asp:Label></TD>
</TR>
<TR>
<TD>
<asp:Label id="Label6" runat="server" ForeColor="SaddleBrown">Travail:</asp:Label></TD>
<TD>
<asp:Label id=lbltel_travail runat="server" ForeColor="Black" text='<%# databinder.eval(container.dataitem, "tel_travail") %>'>
</asp:Label></TD>
</TR>
<TR>
<TD style="HEIGHT: 1px">
<asp:Label id="Label7" runat="server" ForeColor="SaddleBrown">Paget:</asp:Label></TD>
<TD style="HEIGHT: 1px">
<asp:Label id=lbltel_paget runat="server" ForeColor="Black" text='<%# databinder.eval(container.dataitem, "tel_paget") %>'>
</asp:Label></TD>
</TR>
<TR>
<TD style="HEIGHT: 23px">
<asp:Label id="Label8" runat="server" ForeColor="SaddleBrown">Cellulaire:</asp:Label></TD>
<TD style="HEIGHT: 23px">
<asp:Label id=lbltel_cell runat="server" ForeColor="Black" text='<%# databinder.eval(container.dataitem, "tel_cell") %>'>
</asp:Label></TD>
</TR>
<TR>
<TD>
<asp:Label id="Label9" runat="server" ForeColor="SaddleBrown">Courriel:</asp:Label></TD>
</TD>
<TD><A style="COLOR: black; TEXT-DECORATION: none" href='mailto:<%# databinder.eval(container.dataitem, "courriel") %>'><%# databinder.eval(container.dataitem, "courriel") %></A></TD>
</TR>
<TR>
<TD></TD>
<TD align="center">
<asp:Button id="cmdEdit" runat="server" BackColor="#C04000" BorderStyle="Outset" ForeColor="#FFFFC0"
CommandName="Edit" Text="Modifier" CausesValidation="False"></asp:Button></TD>
</TR>
</TBODY>
</TABLE>
</ItemTemplate>
<SeparatorTemplate>
<asp:Label id="Label10" runat="server"></asp:Label>
</SeparatorTemplate>
<HeaderStyle Font-Bold="True" ForeColor="White" BackColor="#A55129"></HeaderStyle>
<EditItemTemplate>
<asp:Button id="Button1" runat="server" Text="Button"></asp:Button>
</EditItemTemplate>
</asp:datalist>