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
| <dt>
<asp:table ID="test" runat="server" Width="100%">
<asp:TableRow>
<asp:TableCell>Tâche attribuée à : <asp:Label ID="lblAdminTache" runat="server" text=""/></asp:TableCell>
<asp:TableCell>Date début : <asp:Label ID="lblDatetache" runat="server" text=""/></asp:TableCell>
<asp:TableCell>Heure début : <asp:Label ID="lblHeureTache" runat="server" text=""/></asp:TableCell>
</asp:TableRow>
</asp:table>
</dt>
<dd>
<asp:table ID="tblInformation" runat="server" Width="100%">
<asp:TableRow HorizontalAlign="Right">
<asp:TableCell>
<div id="options" style="text-align:right">
Éditer : <a href="Edit.aspx?demande=<% Response.Write(i_IdDemande) %>&tache=<% Response.Write(i_IdTache) %>">
<img src="../images/icones/crayon116.png" alt="Editer" title="Editer"
style="cursor:pointer; border-width:0px;" /></a>
Supprimer : <asp:HyperLink ID="HLSupprimer" runat="server"
ImageUrl="~/images/icones/annule16.png" BorderWidth="0"
NavigateUrl="Supprimer.aspx" />
</div>
</asp:TableCell>
</asp:TableRow>
<asp:TableRow>
<asp:TableCell ID="CellInformations" ColumnSpan="3"></asp:TableCell>
</asp:TableRow> |