Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Nesting the DropDownList to Gridview in ASP.NET 2.0 to update

0.00/5 (No votes)
27 Mar 2008 1  
Nesting the DropDownList to Gridview in ASP.NET 2.0 to update a column

Introduction

In this article I will demonstrate how to Nest the DropDownList to Gridview in asp.net 2.0 to update data.ITemplate will need to be created that can be used for representing and editing the data within the Gridview . i use a label in the ItemTemplate to represent the City column and a DropDownList in the EditItemTemplate to edit it .

Background

When i use Gridview i ask myself can i Nest DropDownList to Gridview to update data,now i make it ,i share this pleasure with everyone!

Step By Step

1、 Binding Data to Gridview from SqlDataSource1,DataSource is (Northwind--Customers[CustomerID、CompanyName、City、ContactName]),i add a new table City[CityId,City] into the Northwind.as shown below: 2、Add one TemplateField column to the GridView,add a label in the ItemTemplate field and Design as shown below: 3.1、now add a DropDownList in the EditItemTemplate field and Set its DataSource to SqlDataSource2(Northwind--City[City]).shown below: 3.2、and click "choose data source..." Configure it as shown below4: 3.3、and click "Edit DataBindings..." Configure it as shown below5: 4、the complete code of Default2.aspx see DataBind.zip.

Using the code

Configure SqlDataSource1 like this:

SelectCommand="SELECT [CustomerID], [CompanyName], [City], [ContactName] FROM [Customers]"
UpdateCommand="UPDATE [Customers] SET [CompanyName] = @CompanyName, [City] = @City, [ContactName] = @ContactName WHERE [CustomerID] = @CustomerID">
					

Configure SqlDataSource2 like this:

<asp:SqlDataSource ID="SqlDataSource2"  runat="server" ConnectionString="<%$ ConnectionStrings:NorthwindConnectionString %>"
SelectCommand="SELECT [City] FROM [City]">
                         
					

Configure DropDownList like this:

DropDownList ID="DropDownList1" runat="server" Width="104px"  SelectedValue='<%# Bind ("City") %>' DataSourceID="SqlDataSource2" DataTextField="City" DataValueField="City"
					

Remember to add a new table City[CityId,City] into the Northwind by yourself.

Points of Interest

By the way,i complete this case without writing a line code. the vs.net2005 Generat the code Automaticly.

History

This is my first Article in codeproject!

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here