Implement paging in an asp.net gridview that uses sqldatasource - Part 50

41,456 بازدید
بیشتر
kudvenkat
kudvenkat
Link for csharp, asp.net, ado.net, dotnet basics and sql server video tutorial playlists ...
Link for csharp, asp.net, ado.net, dotnet basics and sql server video tutorial playlists
kudvenkat

Link for text version of this video
http://csharp-video-tutorials.blogspo...

Healthy diet is very important both for the body and mind. If you like Aarvi Kitchen recipes, please support by sharing, subscribing and liking our YouTube channel. Hope you can help.
@aarvikitchen5572

In this video we will discuss about implementing paging in a gridview control that use sqldatasource control.

Step 1: Drag and drop a gridview, a label  and a sqldatasource control on webform1.aspx

Step 2: Configure SqlDataSource1 control to retrieve data from tblEmployee table.

Step 3: Associate GridView1, with SqlDataSource1 control and make sure to select "Enable Paging" checkbox.

Step 4: To control the number of rows displayed in the gridview, set PageSize property. Since, I want to display 3 rows on a page, I have set the PageSize to 3.

Step 5: Generate GridView1 control's PreRender eventhandler method. Copy and paste the following code in code-behind file.
protected void GridView1_PreRender(object sender, EventArgs e)
{
   Label1.Text = "Displaying Page " + (GridView1.PageIndex + 1).ToString()
       + " of " + GridView1.PageCount.ToString();
}

That's it we are done. Run the application. Since we have 6 records in the database table, and as we have set the pagesize to 3, the GridView1 control shows 2 pages with 3 records on each page.

Points to remember:
1. To control the number of rows displayed per page use PageSize property of GridView control.
2. When paging is enabled AllowPaging attribute of gridview control is set to True
AllowPaging="True"
3. PageIndex property of gridview control can be used to retrieve the page that is currently being viewed. PageIndex is ZERO based, so add 1 to it, to compute the correct page number that is being displayed in the gridview.
4. To get the total number of pages available, use PageCount property of GridView control.
5. When sqldatasource control is used, we get default paging. This means that, though we are displaying only 3 records on a page all the rows will be retrieved from the database and the gridview control then displays the correct set of 3 records depending on the page you are viewing. Everytime you click on a page, all the rows will be retrieved. Obviously this is bad for performance. We will discuss about custom paging in a later video session, which solves this problem. With custom paging it is possible to retrieve only the required number of rows and not all of them.

همه توضیحات ...