Categories :- Java script validation for Grid View in edit mode , Javascript validation for Gridview footer textbox , Gridview RowCommand object reference not set to an instance of an object , onclick checkbox select data from gridview asp.net
Introduction :-
In my previous article I have explained Gridview rowcommand object reference not set to an instance of object. Now i have face this problem when i change the gridview AllowPaging="True" PageSize="1" .The Error message as shown below
Description : -
Now i have a solution for this problem .
Select the Gridviw and click on PageIndexChanging Event of the Gridview and write a one line code as shown below
Introduction :-
In my previous article I have explained Gridview rowcommand object reference not set to an instance of object. Now i have face this problem when i change the gridview AllowPaging="True" PageSize="1" .The Error message as shown below
Description : -
Now i have a solution for this problem .
Select the Gridviw and click on PageIndexChanging Event of the Gridview and write a one line code as shown below
protected void GridView1_PageIndexChanging(object sender, GridViewPageEventArgs e)
{
GridView1.PageIndex = e.NewPageIndex;
BingGridViewData();// GridView Paging Not Displaying Data After Switching Page
}
{
GridView1.PageIndex = e.NewPageIndex;
BingGridViewData();// GridView Paging Not Displaying Data After Switching Page
}
Fired this event on code behind of the page and error is solved
Thanks for sharing
ReplyDelete