Click here to Skip to main content
15,891,409 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
In asp.net

VB
<asp:GridView ID="grvMatGrp" runat="server" AutoGenerateColumns="false" Width="90%" AllowPaging="true" PageSize="10"  OnPageIndexChanging="grvMatGrp_PageIndexChanging"
                                                                                        OnRowDeleting="grvMatGrp_RowDeleting">



In C#

C#
protected void grvMatGrp_PageIndexChanging(object sender, GridViewPageEventArgs e)
   {
       Matflag = 1;

      grvMatGrp.PageIndex = e.NewPageIndex;
      GetMaterialList();
   }
Posted
Comments
manoswc 13-May-15 4:31am    
give me a quick ans anyone pls

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