Introduction

In this article you will learn how to edit, update and delete in ListView. First drag and drop ListView. In ListView, next open Default.aspx source code. To make a column in Listview use <LayoutTemplate>. Here first I created a table name 'Product' in my database. It contains 5 columns: ProductId, ProductName,ProductLocation,ProductQuantity, and ProductPrice.

  1. Download my sample.
  2. Inside that folder person.sql file will be there; execute it in your database.
  3. Change the connection string in web.config file

Building the Sample

This sample is written using three tier architecture so you have to add references.

UI->BusinessLogic

BusinessLogic->DataAccess back to BL

BusinessLogic->Commonfunctioon back to BL

BusinessLogic -> UI finally BL return data to UI

  1. /****** Object: Table [dbo].[Product] Script Date: 05/31/2013 10:56:27 ******/
  2. /****** Sathiyamoorthy.S ******/
  3. SET ANSI_NULLS ON
  4. GO
  5. SET QUOTED_IDENTIFIER ON
  6. GO
  7. SET ANSI_PADDING ON
  8. GO
  9. CREATE TABLE [dbo].[Product](
  10. [pk_id] [int] IDENTITY(1,1) NOT NULL,
  11. [ProductId] [varchar](5) NULL,
  12. [ProductName] [varchar](50) NULL,
  13. [ProductPrice] [numeric](8, 2) NULL,
  14. [ProductLocation] [varchar](25) NULL,
  15. [ProductQuantity] [varchar](10) NULL,
  16. PRIMARY KEY CLUSTERED
  17. (
  18. [pk_id] ASC
  19. )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
  20. ) ON [PRIMARY]
  21. GO
  22. SET ANSI_PADDING OFF
  23. GO
  24. select pk_id,ProductId,ProductName,ProductLocation,ProductQuantity,ProductPrice from Product

ASP.NET

ASP.NET

ASP.NET

Description

Note
I have used SqlServer 2008.

For this article we are going to fill ListView by data from database.

We are going to perform the following operations on data using ListView:

  1. Add New record into database; here data will directly be added into database table
  2. Update Records into database, using edit link.
  3. Delete Records using delete link

  1. <configuration>
  2. <connectionStrings>
  3. <add name="MyConnection"
  4. connectionString="Data Source=192.169.1.121\sql;Initial Catalog=master;Persist Security Info=True;User ID=Test;Password=Test"
  5. providerName="System.Data.SqlClient" />
  6. </connectionStrings>

Source Code Files

More Information

Source - http://msdn.microsoft.com/en-us/library/bb398790(v=vs.100).aspx

The ASP.NET ListView control enables you to bind to data items that are returned from a data source and display them. You can display data in pages. You can display items individually, or you can group them.

The ListView control displays data in a format that you define by using templates and styles. It is useful for data in any repeating structure, similar to the DataList and Repeater controls. However, unlike those controls, with the ListView control you can enable users to edit, insert, and delete data, and to sort and page data, all without code.