Blue Theme Orange Theme Green Theme Red Theme
 
Ads by Lake Quincy Media
Home | Forums | Videos | Photos | Downloads | Blogs | Interviews | Jobs | Beginners | Training
 | Consulting  
Submit an Article Submit a Blog 
 Login Close
User Id:
Password:
 
Forgot Password
Forgot Username
Why Register
 Jump to
Skip Navigation Links
TechnologyExpand Technology
WebsiteExpand Website
 Resources  
Close
 Our Network  
Close
Search :       Advanced Search »
Home » ASP.NET & Web Forms » ListView Control in ASP.NET 3.5

ListView Control in ASP.NET 3.5

In this article I am going to discuss about features and examples of ListView control in ASP.NET 3.5.

Author Rank:
Total page views :  9436
Total downloads :  228
   Print Read/Post comments Post a comment  Similar Articles  
   Email to a friend  Bookmark  Author's other articles  
Download Files:
ListView.zip
 
Become a Sponsor

The ListView is an extremely flexible data-bound control that renders its content based on the templates you define. Unlike the Repeater, the ListView adds higher level features such as selection and editing, which work in the same way as those in the GridView. But unlike the GridView, the ListView does’t support a field based model for creating quick and easy grids with a minimum of markup.

ListView is a new addition in ASP.NET 3.5. 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.

The most common reason for using the ListView is to create an unusual layout. For Example , to create a table that places more than one item in the same row, or to break free from table based rendering altogether. When building a page to display large amounts of data, ASP.NET developers usually turn to the GridView first and use the ListView in most specialized scenarios.

ListView Templates:

Templates control certain aspects of the ListView control's generated HTML. Templates are required with ListView; they are optional with other data controls. These templates provide complete control over the output; that is, all aspects of the ListView's generated markup are controlled via templates.

The following list offers details about the numerous templates available with ListView.

1.      AlternatingItemTemplate: Defines how alternating items are displayed.

2.      EditItemTemplate: Defines the presentation for an item when it is edited.

3.      EmptyDataTemplate: Specifies the content to display for empty individual items.

4.      EmptyItemTemplate: Specifies the content to display for empty group items.

5.      GroupSeparatorTemplate: Specifies the content to display between groups.

6.      GroupTemplate: Defines the content for groups. This template is a placeholder for the data displayed for individual group items (when data is grouped).

7.      InsertItemTemplate: Defines the presentation for a new item being inserted into the data set.

8.      ItemSeparatorTemplate: Defines the content to display between individual data items.

9.      ItemTemplate: Defines the data to display for single items.

10.  LayoutTemplate: Defines the main presentation features for the control. This root template contains placeholders that are replaced by what is defined by ItemTemplate and GroupTemplate.

11.  SelectedItemTemplate: Specifies the content to display when users select items.

In this article we will discuss features in ListView step by step.

·         Data Binding

·         Data Pager

·         Add, Edit and Delete

In Data Binding we will bind ListView from database. To show data use ItemTemplate and AlternateItemTemplate show alternative row with different styles.

1. Data Binding

AlternateItemTemplate & ItemTemplate :

<asp:ListView ID="VendorListView" runat="server" DataKeyNames="VendorId"

 DataSourceID="SqlDataSource1" onitemcommand="VendorListView_ItemCommand"

 onsorting="VendorListView_Sorting" InsertItemPosition="LastItem">

<AlternatingItemTemplate>

<tr style="background-color: #FFFFFF; color: #284775;">

<td><asp:Label ID="VendorIdLabel" runat="server" Text='<%# Eval("VendorId") %>' /></td>

<td><asp:Label ID="VendorFNameLabel" runat="server" Text='<%# Eval("VendorFName") %>' /></td>

<td><asp:Label ID="VendorLNameLabel" runat="server" Text='<%# Eval("VendorLName") %>' /></td>

<td><asp:Label ID="VendorCityLabel" runat="server" Text='<%# Eval("VendorCity") %>' /></td>

<td><asp:Label ID="VendorStateLabel" runat="server" Text='<%# Eval("VendorState") %>' /></td>

<td><asp:Label ID="VendorCountryLabel" runat="server" Text='<%# Eval("VendorCountry") %>' /></td>

<td><asp:Label ID="PostedDateLabel" runat="server" Text='<%# Eval("PostedDate") %>' /></td>

<td><asp:Label ID="VendorDescriptionLabel" runat="server" Text='<%# Eval("VendorDescription") %>' /></td>

<td><asp:LinkButton ID="LinkButtonEdit" runat="server" CommandName="Edit">Edit</asp:LinkButton></td>

</tr>

</AlternatingItemTemplate>

<ItemTemplate>

<tr style="background-color: #E0FFFF; color: #333333;">

<td><asp:Label ID="VendorIdLabel" runat="server" Text='<%# Eval("VendorId") %>' /></td>

<td><asp:Label ID="VendorFNameLabel" runat="server" Text='<%# Eval("VendorFName") %>' /></td>

<td><asp:Label ID="VendorLNameLabel" runat="server" Text='<%# Eval("VendorLName") %>' /></td>

<td><asp:Label ID="VendorCityLabel" runat="server" Text='<%# Eval("VendorCity") %>' /></td>

<td><asp:Label ID="VendorStateLabel" runat="server" Text='<%# Eval("VendorState") %>' /></td>

<td><asp:Label ID="VendorCountryLabel" runat="server" Text='<%# Eval("VendorCountry") %>' /></td>

<td><asp:Label ID="PostedDateLabel" runat="server" Text='<%# Eval("PostedDate") %>' /></td>

<td><asp:Label ID="VendorDescriptionLabel" runat="server" Text='<%# Eval("VendorDescription") %>' /></td>

<td><asp:LinkButton ID="LinkButtonEdit" runat="server" CommandName="Edit">Edit</asp:LinkButton></td>

</tr>

</ItemTemplate>

</asp:ListView>

 

Figure1.

 

2. Data Paging

If you want to add Paging you have to use the new DataPager control. This control is a free standing control and what's nice about it is that you can put it anywhere on the page - it doesn't have to be directly visually associated with the control it's actually doing the paging.

<tr runat="server">

<td runat="server" style="text-align: center; background-color: #5D7B9D; font-family: Verdana, Arial, Helvetica, sans-serif;

color: #FFFFFF">

<asp:DataPager ID="DataPager1" runat="server">

<Fields>

<asp:NextPreviousPagerField ButtonType="Button" ShowFirstPageButton="True" ShowLastPageButton="True" />

</Fields>

</asp:DataPager>

</td>

</tr>

Figure2.

 

3.  Add, Edit and Delete:

The ListView also supports editing and adding of data via the EditItemTemplate and InsertItemTemplate. This functionality works very similar to the way it works in a GridView for editing, but it's all done with custom templates:

This is .aspx code.

SQLDataSource :

 

<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:VendorConnectionString %>"

SelectCommand="SELECT [VendorId], [VendorFName], [VendorLName], [VendorCity], [VendorState], [VendorCountry], [PostedDate], [VendorDescription] FROM [Vendor]">

</asp:SqlDataSource>

ListView :

 

<asp:ListView ID="VendorListView" runat="server" DataKeyNames="VendorId"

DataSourceID="SqlDataSource1" onitemcommand="VendorListView_ItemCommand"

onsorting="VendorListView_Sorting" InsertItemPosition="LastItem">

<InsertItemTemplate>

<tr style="">

<td></td>

<td><asp:TextBox ID="TextBoxFName" Width="100" runat="server" Text='<%# Bind("VendorFName") %>' /></td>

<td><asp:TextBox ID="TextBoxLName" Width="100"  runat="server" Text='<%# Bind("VendorLName") %>' /></td>

<td><asp:TextBox ID="TextBoxCity" Width="100"  runat="server" Text='<%# Bind("VendorCity") %>' /></td>

<td><asp:TextBox ID="TextBoxState" Width="100"  runat="server" Text='<%# Bind("VendorState") %>' /></td>

<td><asp:TextBox ID="TextBoxCountry" Width="100"  runat="server" Text='<%# Bind("VendorCountry") %>' /></td>

<td></td>

<td><asp:TextBox ID="TextBoxDescription" Width="150" TextMode="MultiLine" runat="server" Text='<%# Bind("VendorDescription") %>' /></td>

<td><asp:Button ID="ButtonInsert" runat="server" CommandName="Insert" Text="Insert" /></td>

</tr>

</InsertItemTemplate>

<EditItemTemplate>

<tr style="background-color: #999999;">

<td><asp:TextBox ID="TextBoxVendorId" Width="100"   runat="server" Text='<%# Bind("VendorId") %>' /></td>

<td><asp:TextBox ID="TextBoxFName" Width="100"  runat="server" Text='<%# Bind("VendorFName") %>' /></td>

<td><asp:TextBox ID="TextBoxLName" Width="100"  runat="server" Text='<%# Bind("VendorLName") %>' /></td>

<td><asp:TextBox ID="TextBoxCity" Width="100"  runat="server" Text='<%# Bind("VendorCity") %>' /></td>

<td><asp:TextBox ID="TextBoxState" Width="100"  runat="server" Text='<%# Bind("VendorState") %>' /></td>

<td><asp:TextBox ID="TextBoxCountry" Width="100"  runat="server" Text='<%# Bind("VendorCountry") %>' /></td>

<td><asp:TextBox ID="TextBoxPostedDate"  Width="100" runat="server" Text='<%# Bind("PostedDate") %>' /></td>

<td><asp:TextBox ID="TextBoxDescription" TextMode="MultiLine"  Width="150"  runat="server" Text='<%# Bind("VendorDescription") %>' /></td>

<td>

<asp:LinkButton ID="LinkButtonUpdate" runat="server" CommandName="Update">Update</asp:LinkButton>

<asp:LinkButton ID="LinkButtonDelete" runat="server" CommandName="Delete">Delete</asp:LinkButton>

<asp:LinkButton ID="LinkButtonCancel" runat="server" CommandName="Cancel">Cancel</asp:LinkButton>

</td>

</tr>

</EditItemTemplate>

</asp:ListView>

.CS Code:

protected void VendorListView_ItemCommand(object sender, ListViewCommandEventArgs e)

{

if (e.CommandName == "Insert")

{

TextBox TextBoxFName = (TextBox)e.Item.FindControl("TextBoxFName");

TextBox TextBoxLName = (TextBox)e.Item.FindControl("TextBoxLName");

TextBox TextBoxCity = (TextBox)e.Item.FindControl("TextBoxCity");

TextBox TextBoxState = (TextBox)e.Item.FindControl("TextBoxState");

TextBox TextBoxCountry = (TextBox)e.Item.FindControl("TextBoxCountry");

TextBox TextBoxDescription = (TextBox)e.Item.FindControl("TextBoxDescription");

string insertCommand = "INSERT INTO Vendor ([VendorFName],[VendorLName],[VendorCity],[VendorState],[VendorCountry], [VendorDescription]) VALUES('" + TextBoxFName.Text + "', '" + TextBoxLName.Text + "', '" + TextBoxCity.Text + "', '" + TextBoxState.Text + "', '" + TextBoxCountry.Text + "', '" + TextBoxDescription.Text + "');";

SqlDataSource1.InsertCommand = insertCommand;

}

 

else if (e.CommandName == "Update")

{

TextBox TextBoxVendorId = (TextBox)e.Item.FindControl("TextBoxVendorId");

TextBox TextBoxFName = (TextBox)e.Item.FindControl("TextBoxFName");

TextBox TextBoxLName = (TextBox)e.Item.FindControl("TextBoxLName");

TextBox TextBoxCity = (TextBox)e.Item.FindControl("TextBoxCity");

TextBox TextBoxState = (TextBox)e.Item.FindControl("TextBoxState");

TextBox TextBoxCountry = (TextBox)e.Item.FindControl("TextBoxCountry");

TextBox TextBoxPostedDate = (TextBox)e.Item.FindControl("TextBoxPostedDate");

TextBox TextBoxDescription = (TextBox)e.Item.FindControl("TextBoxDescription");

string updateCommand = "UPDATE [Vendor] set [VendorFName]='" + TextBoxFName.Text + "', [VendorLName]='" + TextBoxLName.Text + "', [VendorCity]='" + TextBoxCity.Text + "', [VendorState]='" + TextBoxState.Text + "', [VendorCountry]='" + TextBoxCountry.Text + "', [PostedDate] = '" + TextBoxPostedDate.Text + "', [VendorDescription] = '" + TextBoxDescription.Text + "' WHERE VendorId=" + Convert.ToInt32(TextBoxVendorId.Text) + ";";

SqlDataSource1.UpdateCommand = updateCommand;

}

 

else if (e.CommandName == "Delete")

{

TextBox TextBoxVendorId = (TextBox)e.Item.FindControl("TextBoxVendorId");

string deleteCommand = "DELETE FROM [Vendor] WHERE VendorId=" + Convert.ToInt32(TextBoxVendorId.Text);

SqlDataSource1.DeleteCommand = deleteCommand;

}

}

Edit record.

 

 - Add record.

 

 

I hope it will be useful. If yes drop me a comment in c-sharpcorner comment section.


Login to add your contents and source code to this article
 About the author
 
Raj Kumar
Rajkumar is working as a senior software engineer has over 5 years experience working on ASP.NET, VB.NET, C#, AJAX and other latest technologies. He holds Master's degree in Computer Science. currently enjoying working on WPF, WCF, Silverlight, MVC, XAML.I can be reached on at raj2511984 at yahoo.com
Looking for C# Consulting?
C# Consulting is founded in 2002 by the founders of C# Corner. Unlike a traditional consulting company, our consultants are well-known experts in .NET and many of them are MVPs, authors, and trainers. We specialize in Microsoft .NET development and utilize Agile Development and Extreme Programming practices to provide fast pace quick turnaround results. Our software development model is a mix of Agile Development, traditional SDLC, and Waterfall models.
Click here to learn more about C# Consulting.
 
Introducing MaxV - one click. infinite control. Hyper-V Hosting from MaximumASP.
Finally – a virtual platform that delivers next-generation Windows Server 2008 Hyper-V virtualization technology from a managed hosting partner you can truly depend on. Visit www.maximumasp.com/max for a FREE 30 day trial. Hurry offer ends soon. Climb aboard the MaxV platform and take advantage of High Availability, Intelligent Monitoring, Recurrent Backups, and Scalability – with no hassle or hidden fees. As a managed hosting partner focused solely on Microsoft technologies since 2000, MaximumASP is uniquely qualified to provide the superior support that our business is built on. Unparalleled expertise with Microsoft technologies lead to working directly with Microsoft as first to offer IIS 7 and SQL 2008 betas in a hosted environment; partnering in the Go Live Program for Hyper-V; and product co-launches built on WS 2008 with Hyper-V technology.
Dynamic PDF
ceTE software specializes in components for dynamic PDF generation and manipulation. The DynamicPDF™ product line allows you to dynamically generate PDF documents, merge PDF documents and new content to existing PDF documents from within your applications.
Go.NET
Build custom interactive diagrams, network, workflow editors, flowcharts, or software design tools. Includes many predefined kinds of nodes, links, and basic shapes. Supports layers, scrolling, zooming, selection, drag-and-drop, clipboard, in-place editing, tooltips, grids, printing, overview window, palette. 100% implemented in C# as a managed .NET Control. Document/View/Tool architecture with many properties&events. Optional automatic layout.
Dundas Software
Dundas Chart for .NET is the most advanced .NET charting package available today.  With an extremely complete feature set, elegant architecture and easy implementation, Dundas Chart can quickly add advanced Charting functionality to enhance and transform ASP.NET and Windows Forms applications.  Whether you are implementing charting into internal projects, or building applications for clients, Dundas Chart offers advanced technology and advanced results to get the most out of data.
Clickatell's SMS Gateway
Clickatell's Developer Solutions allow you to SMS enable any website or application via a range of API's. Learn More about our API connections.
Free access to .NET Memory Management video
Everything you need to know about Garbage Collection, Temporary Objects, Fragmentation, Finalization and common causes of memory leaks in .NET. Watch the video here.
Microsoft Visual Studio 2010 Professional
Microsoft Visual Studio 2010 Professional will launch on April 12, but you can beat the rush and secure your copy today by pre-ordering at the affordable estimated retail price of $549 (US). Pre-order now.
Nevron Chart for .NET 2010.1 Now Available
The leading .NET charting control now features PDF, Flash and Silverlight export, visualization of large datasets and more. Deliver true charting functionality to your BI, Scorecard, Presentation or Scientific apps. Download evaluation now.
Developer-Ready ASP.NET 2.0 Web Hosting with 3 MONTHS FREE
Now supporting .NET 3.0 Framework with Windows Workflow Foundation, Windows Communication Foundation (WCF), Windows Presentation Foundation (WPF), windows CardSpace (WCS)! Providing more flexibility for Developers with Web Services Support and a User/Permission Manger. Also supporting MS SQL 2005/2000 with Real-Time Backups, FREE Automated Attach .MDF Tool, FREE SQL Restore and Shrink SQL DB Tools, and SQL
 
   Print Read/Post comments Post a comment  Similar Articles  
   Email to a friend  Bookmark  Author's other articles  
Download Files:
ListView.zip
 
 Post a Feedback, Comment, or Question about this article
Subject:  
Comment:  
Become a Sponsor
 Comments

 Hosted by MaximumASP  |  Found a broken link?  |  Contact Us  |  Terms & conditions  |  Privacy Policy  |  Site Map  |  Suggest an Idea  |  Media Kit
Current Version: 5.2009.6.2
 © 2010  contents copyright of their authors. Rest everything copyright Mindcracker. All rights reserved.