Wrox Programmer Forums
Go Back   Wrox Programmer Forums > ASP.NET and ASP > ASP.NET 2.0 > ASP.NET 2.0 Basics
|
ASP.NET 2.0 Basics If you are new to ASP or ASP.NET programming with version 2.0, this is the forum to begin asking questions. Please also see the Visual Web Developer 2005 forum.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 2.0 Basics section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old October 17th, 2007, 01:45 AM
Registered User
 
Join Date: May 2006
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Default filling dropdownlist based on first in Gridview

Hi All and Thanks in Advance
I Want to fill my second dropdownlist based on the value of the first dropdownlist inside my gridview.So whenever client changes its selection in first dropdownlist second one will be updated based on the first selected value



 
Old October 17th, 2007, 06:55 AM
Friend of Wrox
 
Join Date: Aug 2004
Posts: 550
Thanks: 0
Thanked 1 Time in 1 Post
Default

A simpler and quicker example can be as below (though I haven't tested it properly).

You can declare a selection change event for the first dropdown, set its autopostback to true, now you can loop through the rows of datagrid, find the dropdowns and can add items as below:

Code:
protected void Lst_SelectedIndexChanged(object sender, EventArgs e)
        { 
            DropDownList lst1, lst2;
            for (int iGridRow = 0; iGridRow <= dg.Items.Count - 1; iGridRow++)
            {
                lst1 = (DropDownList)dg.Items[iGridRow].FindControl("lst1");
                lst2 = (DropDownList)dg.Items[iGridRow].FindControl("lst2");

                if (lst1.SelectedValue != "0")
                    lst2.Items.Add(new ListItem(lst1.SelectedItem.Text, lst1.SelectedItem.Value));
                else
                    lst2.Items.Clear();
            }
        }


Regards
Mike





Similar Threads
Thread Thread Starter Forum Replies Last Post
DropDownList in Gridview sdoremus ASP.NET 3.5 Basics 0 September 15th, 2008 07:15 PM
Get GridView Cell Value Based on GridView Column stublair C# 2008 aka C# 3.0 0 September 4th, 2008 08:30 AM
Gridview and DropDownList extendedram ASP.NET 2.0 Basics 3 June 12th, 2007 04:05 PM
Gridview and dropdownlist GuyB ASP.NET 1.0 and 1.1 Basics 0 November 9th, 2006 08:54 PM
Auto-Filling a Text box based on Multiple Boxes zuldan23 Access VBA 1 May 5th, 2006 10:17 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.