Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6748749
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T12:36:11+00:00 2026-05-26T12:36:11+00:00

I have created: one master page and one content page called Detail. On Button

  • 0

I have created:

  • one master page and one content page called Detail.
  • On Button click event, displaying data in grid view.
  • In grid view, columns are autogenerated.
  • I wanted to show 11 column in grid view, but it is more than page
    size.

What to do for this?

I have created sql helper file for database connection code and calling that method, not using sqldatasource for connection.

When I trying to do paging, getting error:

The GridView ‘GridView1’ fired event PageIndexChanging which wasn’t
handled.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T12:36:12+00:00Added an answer on May 26, 2026 at 12:36 pm

    You need to declare a method on your code behind that handles the PageIndexChanging event.

    Something similar to this:

    protected void GridView1_PageIndexChanging (object sender, GridViewPageEventArgs  e)
    {
        GridView1.PageIndex = e.NewPageIndex;
        bindGridView(); //bindgridview will get the data source and bind it again
    }
    
    private void bindGridView()
    {
         GridView1.DataSource=getData();
         GridView1.DataBind();
    }
    

    Providing sample code:

        protected void GridView1_PageIndexChanging(object sender, GridViewPageEventArgs e)
        {
            GridView1.PageIndex = e.NewPageIndex;
            bindGridView(); //bindgridview will get the data source and bind it again
        }
    
        protected void Page_Load(object sender , EventArgs e)
        {
            if(!IsPostBack)
             bindGridView();
    
        }
        //this is some sample data 
        private void bindGridView()
        {
            DataTable t = new DataTable();
            t.Columns.Add("Col1");
            t.Columns.Add("Col2");
            DataRow r = null;
            for (int i = 0; i < 25; i++)
            {
                r = t.NewRow();
                r.ItemArray = new object[] { "Val" + i, " Another " + i };
                t.Rows.Add(r);
            }
            GridView1.DataSource = t;
            GridView1.DataBind();
        }
    

    And this is the markup:

    <asp:GridView OnPageIndexChanging="GridView1_PageIndexChanging" AllowPaging="true" PageSize="10" ID="GridView1" runat="server" AutoGenerateColumns="true">
    

    Produces this:

    enter image description here

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In my application I have next problem. I created master page and some content
I have created one aspx Page from that i need to access the property
I have created user control for menu bar and loading in Master page. User
I have an ASP.NET Site that has a single Master Page. On one of
I have a content page which has a related master page. I register a
I have created a custom master page and have the follwoing code on the
I have one (razor) page that contain 5 different partial views. Each partial view
I have a master page that has two content sections like this (left some
I have created one table using the below command: create table Table1( Id int
I have created one application in flex that is accessing the Java webservice using

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.