Click here to Skip to main content
Sign Up to vote bad
good
See more: C#ASP.NETGridview
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....
 
protected void GvHome_PageIndexChanging(object sender, GridViewPageEventArgs e)
    {
 
        GvHome.PageIndex = e.NewPageIndex;
        GvHome.DataBind();
    }
 
Please help me, Thanks in advance
Posted 10 Nov '12 - 1:19

Comments
csharpbd - 10 Nov '12 - 16:22
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.
<asp:UpdatePanel ID="up" runat="server">
    <asp:GridView ID="gv" runat="server">
    </asp:GridView>
</asp:UpdatePanel>
  Permalink  
Comments
Software Engineer 892 - 10 Nov '12 - 7:44
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)

  Print Answers RSS
Your Filters
Interested
Ignored
     
0 OriginalGriff 218
1 Sergey Alexandrovich Kryukov 159
2 Santhosh G_ 155
3 Richard MacCutchan 145
4 Maciej Los 136
0 Sergey Alexandrovich Kryukov 10,264
1 OriginalGriff 7,937
2 CPallini 4,201
3 Rohan Leuva 3,522
4 Maciej Los 3,135


Advertise | Privacy | Mobile
Web01 | 2.6.130523.1 | Last Updated 10 Nov 2012
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid