<asp:TemplateField HeaderText="Municipio"> <EditItemTemplate> <asp:Label ID="Label4" runat="server" Text='<%# Eval("Municipio") %>'></asp:Label> </EditItemTemplate> <ItemTemplate> <asp:Label ID="Label3" runat="server" Text='<%# Eval("Municipio") %>'></asp:Label> </ItemTemplate> </asp:TemplateField>
<% vectorP[0] = "Municipio"; %> ----- <asp:TemplateField HeaderText="Municipio"> <EditItemTemplate> <asp:Label ID="Label4" runat="server" Text='<%# Eval(vectorP[0]) %>'></asp:Label> </EditItemTemplate> <ItemTemplate> <asp:Label ID="Label3" runat="server" Text='<%# Eval(vectorP[0]) %>'></asp:Label> </ItemTemplate> </asp:TemplateField>
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)