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
| <asp:Repeater ID="rptStage" runat="server" >
<ItemTemplate>
<table class="repStage1">
<tr>
<td class="titre"><%# DataBinder.Eval(Container.DataItem, "TitreStage") %></td>
<td>Quand : Du <%#Format(DataBinder.Eval(Container.DataItem, "DateDebut"), "yyyy-MM-dd")%>
au <%#Format(DataBinder.Eval(Container.DataItem, "DateFin"), "yyyy-MM-dd")%></td>
</tr>
<tr>
<td>Où : <%# DataBinder.Eval(Container.DataItem, "NomEnt") %></td>
<td>Rémunération : <%# DataBinder.Eval(Container.DataItem, "Remuneration") %>$</td>
</tr>
<tr>
<td colspan="2">Description : <%#DataBinder.Eval(Container.DataItem, "DescStage")%>(...)</td>
</tr>
<tr>
<td colspan="2" style="text-align: right">
<a href="StageDetail.aspx?Stage=<%#DataBinder.Eval(Container.DataItem, "NoStage")%>">-> Voir loffre en détail <-</a>
</td>
</tr>
<tr>
<td>
<asp:Panel ID="PanStage1" runat="server">
<a href="VoirStage.aspx?StageNo=<%#DataBinder.Eval(Container.DataItem, "NoStage")%>">
-> Désactiver le Stage <-</a>
</asp:Panel>
</td>
</tr>
</table> |
Partager