Nuevamente tengo una consulta que hacerles.
En una página tengo un gridview que lleno desde una consulta sql.
A las columnas del gridview le doy el siguiente formato:
Código asp:
Ver original
<Columns> <asp:BoundField DataField="ID_REGISTRO" HeaderText="ID" ItemStyle-Width="500px" FooterStyle-HorizontalAlign="Center"> <FooterStyle HorizontalAlign="Center"></FooterStyle> <ItemStyle Width="500px" ></ItemStyle> </asp:BoundField> <asp:BoundField DataField="RUT" HeaderText="RUT Empleado" ItemStyle-Width="1000px" HeaderStyle-HorizontalAlign="Center"> <HeaderStyle HorizontalAlign="Center"></HeaderStyle> <ItemStyle Width="1000px"></ItemStyle> </asp:BoundField> <asp:BoundField DataField="NOMBRE_CURSO" HeaderText="Curso" HtmlEncode="false" ItemStyle-Width="1200px" FooterStyle-HorizontalAlign="Center"> <FooterStyle HorizontalAlign="Center"></FooterStyle> <ItemStyle Width="1200px"></ItemStyle> </asp:BoundField> <asp:BoundField DataField="CODIGO_CURSO" HeaderText="Cod. Curso" HtmlEncode="false" ItemStyle-Width="1200px" FooterStyle-HorizontalAlign="Center"> <FooterStyle HorizontalAlign="Center"></FooterStyle> <ItemStyle Width="1200px"></ItemStyle> </asp:BoundField> <asp:BoundField DataField="FECHA" HeaderText="Fecha" HtmlEncode="false" ItemStyle-Width="1200px" FooterStyle-HorizontalAlign="Center"> <FooterStyle HorizontalAlign="Center"></FooterStyle> <ItemStyle Width="1200px"></ItemStyle> </asp:BoundField> <asp:ButtonField CommandName="Select" Text="IR" /> </Columns>
Lo que quiero hacer es llenar la misma gridview con otra consulta sql, pero que esta otra consulta retorna datos con otros nombres RUT, NOMBRE, APELLIDO_PATERNO y nada más....
¿Como puedo hacer para cambiar el formato de cada BoundField del grid view al ejecutar el sistema?
¿Se puede?
Espero su ayuda!
Gracias!
Saludos!