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 Sergey Alexandrovich Kryukov 435
1 OriginalGriff 330
2 Arun Vasu 253
3 Zoltán Zörgő 194
4 Tadit Dash 173
0 Sergey Alexandrovich Kryukov 10,105
1 OriginalGriff 7,739
2 CPallini 4,181
3 Rohan Leuva 3,482
4 Maciej Los 2,999


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