Click here to Skip to main content
15,891,708 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Dear Friends, am facing problem with paging in gridview.

When i click on paging in gridview, complete page is refreshing.
I want to avoid page refreshing after click paging

I gave allow paging - True

and Gridview page index changing is....

C#
protected void GvHome_PageIndexChanging(object sender, GridViewPageEventArgs e)
    {

        GvHome.PageIndex = e.NewPageIndex;
        GvHome.DataBind();
    }


Please help me, Thanks in advance
Posted
Comments
csharpbd 10-Nov-12 16:22pm    
Can you share your *.aspx and *.aspx.cs both pages code? Because need to know how you use UpdatePanel and Bind your GridView.

1 solution

try using UpdatePanel. Place gridview inside UpdatePanel.
XML
<asp:UpdatePanel ID="up" runat="server">
    <asp:GridView ID="gv" runat="server">
    </asp:GridView>
</asp:UpdatePanel>
 
Share this answer
 
Comments
Software Engineer 892 10-Nov-12 7:44am    
Already i used Update panel.....still it refreshing complete page....when paging clicks.
Please help.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900