
10/11/2011, 15:18
|
| | | Fecha de Ingreso: octubre-2011
Mensajes: 14
Antigüedad: 14 años Puntos: 1 | |
| Respuesta: Generar GridView por CodeBehind. Hola a todos, era algo sencillo. Por si alguien no sabe y le interesa:
BoundField dato = new BoundField();
dato.DataField = "sss";
dato.HeaderText = "tt";
DataControlField datas = dato;
grvVerificaciones.Columns.Add(datas);
Saludos. |