1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
| <asp:Panel ID="panel_Reg" runat="server" Height="179px" Visible="False" Width="100%">
<table width="100%">
<tr>
<td rowspan="3" style="height: 20px">
Prenom</td>
<td rowspan="3" style="height: 20px">
Nom</td>
<td rowspan="3" style="height: 20px">
Telephone</td>
<td rowspan="3" style="height: 20px">
Reference</td>
<td rowspan="3" style="height: 20px">
Type d'appel</td>
<td rowspan="3" style="height: 20px">
Status</td>
</tr>
<tr>
</tr>
<tr>
</tr>
<tr>
<td rowspan="1" style="height: 20px">
<asp:TextBox ID="box_Prenom" runat="server"></asp:TextBox></td>
<td rowspan="1" style="height: 20px">
<asp:TextBox ID="box_Nom" runat="server"></asp:TextBox></td>
<td rowspan="1" style="height: 20px">
<asp:TextBox ID="box_Tel" runat="server"></asp:TextBox></td>
<td rowspan="1" style="height: 20px">
<asp:DropDownList ID="ddl_Ref" runat="server" DataSourceID="SqlRef" DataTextField="Nom_Reference"
DataValueField="ID">
</asp:DropDownList></td>
<td rowspan="1" style="height: 20px">
<asp:DropDownList ID="ddl_Appel" runat="server" DataSourceID="SqlAppel" DataTextField="Type_Appel"
DataValueField="ID">
</asp:DropDownList></td>
<td rowspan="1" style="height: 20px">
<asp:CheckBox ID="chk_Status" runat="server" /></td>
</tr>
</table>
</asp:Panel> |