Click here to Skip to main content
6,595,444 members and growing! (21,082 online)
Email Password   helpLost your password?
Web Development » ASP.NET Controls » General     Intermediate License: The Code Project Open License (CPOL)

Complete ListView in ASP.NET 3.5

By Ashrafur Rahaman

Most powerful data binding control which has the power of easier data-binding, flexible pagination, sorting, inserting, deleting, and updating and CSS implement features.
C# (C# 3.0), .NET (.NET 3.5), ASP.NET, Visual Studio (VS2008), Dev
Version:2 (See All)
Posted:23 Mar 2008
Views:48,839
Bookmarked:29 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
20 votes for this article.
Popularity: 3.79 Rating: 2.91 out of 5
5 votes, 26.3%
1
2 votes, 10.5%
2
3 votes, 15.8%
3
2 votes, 10.5%
4
7 votes, 36.8%
5
CompleteListView

Introduction

ASP.NET 3.5 introduces a new data binding control named the ListView. ASP.NET already has a lot of data bind controls; it should be more than 10. But the good news is, ListView can literally replace all other data binding controls in ASP.NET. ListView control makes data binding easier than previous controls. It has included styling with CSS, flexible pagination, and sorting, inserting, deleting, and updating features.

Complete ListView

Listview having full data control support

In this article, I will describe features in ListView step by step with related code review.

  1. Data binding
  2. Data pager
  3. Sorting
  4. Insert, update and delete

DataBinding

The ListView is a template driven control which means that it will not render anything. By default, the developer must completely specify the HTML he/she wants to render in the form of templates. To show data in ListView control, you need to take a LayoutTemplate (to define top level of HTML for output rendering). To show data, you need to take ItemTemplate and AlternativeItemTemplate to show alternative row as with different CSS. Here is the example of simple data binding with AlternativeItemTemplate.

//very simple databinding in ListView
<LayoutTemplate>
 <table border="0" cellpadding="1">
  <tr style="background-color:#E5E5FE">
   <th align="left"><asp:LinkButton ID="lnkId" runat="server">Id</asp:LinkButton></th>
   <th align="left"><asp:LinkButton ID="lnkName" runat="server">Name</asp:LinkButton></th>
   <th align="left"><asp:LinkButton ID="lnkType" runat="server">Type</asp:LinkButton></th>
   <th></th>
  </tr>
  <tr id="itemPlaceholder" runat="server"></tr>
 </table>
</LayoutTemplate>
<ItemTemplate>
  <tr>
   <td><asp:Label runat="server" ID="lblId"><%#Eval("ID") %></asp:Label></td>
   <td><asp:Label runat="server" ID="lblName"><%#Eval("FirstName")+" 
	"+Eval("LastName") %></asp:Label></td>
   <td><asp:Label runat="server" ID="lblType"><%#Eval("ContactType") %></asp:Label></td>
   <td></td>
  </tr>
</ItemTemplate>
<AlternatingItemTemplate>
  <tr style="background-color:#EFEFEF">
   <td><asp:Label runat="server" ID="lblId"><%#Eval("ID") %></asp:Label></td>
   <td><asp:Label runat="server" ID="lblName"><%#Eval("FirstName")+" "+
	Eval("LastName") %></asp:Label></td>
   <td><asp:Label runat="server" ID="lblType"><%#Eval("ContactType") %></asp:Label></td>
   <td></td>
  </tr>
</AlternatingItemTemplate>

Here Layout template is making header of the control, and ItemTemplate is showing data taken from table by Binding columns with Label controls, and AlternativeItemTemplate does the same as ItemTemplate just changing CSS for alternative columns.

DataPager

To add pagination in the listview, you need to add an asp:DataPager control, better to put this control inside LayoutTemplate at the end of the LayoutTemplate. DataPager control has many options to show pagination and these are useful too. Here I have just used a simple one.

<asp:DataPager ID="ItemDataPager" runat="server" PageSize="5">
    <Fields>
         <asp:NumericPagerField ButtonCount="2" />
    </Fields>
</asp:DataPager>    

Sorting

It is very easy to sort data in ListView. Sort functionality is defined in the CommandArgument property of the button that contains the columns to be sorted. It occurs when a button with its CommandName property set to Sort is clicked. And you need to make a call to the Sort method named onsorting="ListView1_Sorting".

// to allow sort if click on the header of the table make 
//table header controls clickable 
//and give commandname and commandargument
<tr style="background-color:#E5E5FE">
 <th align="left"><asp:LinkButton ID="lnkId" runat="server" 
	CommandName="Sort" CommandArgument="ID">Id</asp:LinkButton></th>
 <th align="left"><asp:LinkButton ID="lnkName" runat="server" 
	CommandName="Sort" CommandArgument="FirstName">Name</asp:LinkButton></th>
 <th align="left"><asp:LinkButton ID="lnkType" runat="server" 
	CommandName="Sort" CommandArgument="ContactType">Type</asp:LinkButton></th>
 <th></th>
</tr>    

Insert, Update and Delete

To insert data into ListView, you need to add a tag in ListView named InsertItemTemplate. Add to add inserted code, add code in ItemCommand.

HTML Code

<InsertItemTemplate>
    <tr runat="server">
        <td></td>
        <td>
        <asp:TextBox ID="txtFname" runat="server" 
		Text='<%#Eval("FirstName") %>' Width="100px">First Name</asp:TextBox>
        <asp:TextBox ID="txtLname" runat="server" 
		Text='<%#Eval("LastName") %>' Width="100px">Last Name</asp:TextBox>
        </td>
        <td><asp:TextBox ID="txtCtype" runat="server" 
	Text='<%#Eval("ContactType") %>' Width="100px">Contact Type</asp:TextBox></td>
        <td><asp:Button ID="InsertButton" runat="server" 
		CommandName="Insert" Text="Insert" /></td>
    </tr>
</InsertItemTemplate>    

CS Code

In the CS file, insert this code in ItemCommand:

if (e.CommandName == "Insert")
{
    TextBox txtFname = (TextBox)e.Item.FindControl("txtFname");
    TextBox txtLname = (TextBox)e.Item.FindControl("txtLname");
    TextBox txtCtype = (TextBox)e.Item.FindControl("txtCtype");
    string insertCommand = "Insert into [Contacts] 
	    ([FirstName],[LastName],[ContactType]) Values('" + txtFname.Text + "', '" 
                 + txtLname.Text + "', '" + txtCtype.Text + "');";
    SqlDataSource1.InsertCommand = insertCommand;
}

In the same way, code for Update and Delete will be done using EditItemTemlpate. Please check the attached source files to get the complete code.

History

  • 24th March 2008: First version of the article

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Ashrafur Rahaman


Member
Lead programmers on project to finish the outsourced product, analyze requirement and define solution architecture for project. Design and maintain database. Software quality assurance, source control, bug tracking, feature and project schedule planning. Developed Statement of Work, setup project plan, designed Data Model and Web Application architecture in .NET 2.0/3.5 and SQL Server, and supervise a .net developer’s team.
Occupation: Team Leader
Company: Latitude-23
Location: Bangladesh Bangladesh

Other popular ASP.NET Controls articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 13 of 13 (Total in Forum: 13) (Refresh)FirstPrevNext
GeneralGood Pinmemberkasmatt23:47 26 Oct '09  
GeneralGood PinassociateAbhishek Sur22:26 28 Sep '09  
Generalmissing Pinmemberykiranbabu1:04 16 Jul '09  
GeneralGood Article Pinmemberrobertoqzs21:00 24 Jun '09  
GeneralMy vote of 1 PinmemberKam8:23 17 Apr '09  
GeneralDatabase is missing PinmemberMember 40325377:11 24 Mar '09  
GeneralSomething is missing PinmemberMember 18912905:21 23 Feb '09  
GeneralGood introduction PinmemberFredrik Josefsson3:03 3 Feb '09  
GeneralRe: Good introduction PinmemberAshrafur Rahaman5:49 3 Feb '09  
GeneralMy vote of 2 PinmemberFrank Kerrigan3:33 9 Dec '08  
GeneralMy vote of 1 Pinmembergino_montano4:09 1 Dec '08  
Generalhow to set header information dynamically Pinmembergargvijay20:24 30 Oct '08  
GeneralNot bad, but... PinmemberCrazyTasty21:42 27 Jul '08  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 23 Mar 2008
Editor: Deeksha Shenoy
Copyright 2008 by Ashrafur Rahaman
Everything else Copyright © CodeProject, 1999-2009
Web13 | Advertise on the Code Project