Link to home
Start Free TrialLog in
Avatar of Meinhoonaa
Meinhoonaa

asked on

datagrid: pageindexchanged does not get fired

The datagrid loads correctly but when I try to go to next page on the grid, the page index does not get fired. Nothing happens.

code files attached
snapshot.aspx
snapshot.aspx.vb
Avatar of Johny Bravo
Johny Bravo

Very know issue for datagrid. Add a blank column like below. This should fix it.

<Columns>
<asp:BoundColumn></asp:BoundColumn>
</Column>
ASKER CERTIFIED SOLUTION
Avatar of Johny Bravo
Johny Bravo

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Meinhoonaa

ASKER

where should I add a blank column?
Thank u