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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
| <asp:GridView Visible="true" ID="liste_application" runat="server"
BorderStyle="Double" CellPadding="2" BorderColor="White"
AutoGenerateColumns="false" BorderWidth="0px" Font-Names="Calibri,Arial"
HorizontalAlign="Center" CellSpacing="1" ShowFooter="False" style="left: 45%; position: absolute; top: 38%" Height="200px" Width="70%">
<Columns>
<asp:TemplateField>
<ItemTemplate>
<asp:Label Font-Size="Larger" ForeColor="red" ID="APP_ID" VISIBLE="false" runat="server" Text='<%# Bind("APP_ID") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField>
<ItemTemplate>
<asp:Label Font-Size="Larger" ForeColor="red" ID="APP_LIBELLE" runat="server" Text='<%# Bind("APP_LIBELLE") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField>
<ItemTemplate>
<asp:Label Font-Size="Larger" visible="false" ID="GRP_ID" runat="server" Text='<%# Bind("GRP_ID") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField>
<ItemTemplate>
<asp:Label Font-Size="Larger" ID="GRP_LIBELLE" runat="server" Text='<%# Bind("GRP_LIBELLE") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField>
<ItemTemplate>
<asp:HyperLink ID="FIC_LIBELLE" NavigateUrl='<%# Bind("FIC_LIEN") %>' runat="server" Text='<%# Bind("FIC_LIBELLE") %>'></asp:HyperLink>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView> |
Partager