
28/11/2007, 14:26
|
| | Fecha de Ingreso: noviembre-2007 Ubicación: Trabajo en INEGI
Mensajes: 33
Antigüedad: 17 años, 4 meses Puntos: 0 | |
Re: problema con la paginación del datagrid Hola
A mi me funciona correctamente así
this.MiGrid.SelectedIndex = -1;
this.MiGrid.CurrentPageIndex = e.NewPageIndex;
DataView dv = new DataView();
dv = new DataView("Sentencia sql);
this.MiGrid.DataSource = dv;
this.MiGrid.DataBind();
Espero que te sirva |