Ver Mensaje Individual
  #4 (permalink)  
Antiguo 25/04/2006, 15:04
mcEmmanuel
 
Fecha de Ingreso: abril-2006
Mensajes: 40
Antigüedad: 18 años, 11 meses
Puntos: 0
Lo que se tiene que hacer es moverte a una pagina anterior, yo lo he solucionado asi
Código:
With DataGrid1
	If .CurrentPageIndex > .Items.Count \ .PageSize Then
		.CurrentPageIndex = (.Items.Count - 1) \ .PageSize
	End If
	.DataSource = ds
	.DataBind()
End With