Click here to Skip to main content
15,884,739 members
Articles / Web Development / ASP.NET
Tip/Trick

DropDown List With OptGroup Support

Rate me:
Please Sign up or sign in to vote.
3.33/5 (6 votes)
18 Aug 2013CPOL 34.5K   1.8K   5   8
How to add OptGroup support to your dropdown list control

Introduction

This tip shows you how to add OptGroup support to your dropdown list control.

Using the Code

  1. Download the file in the attachment & add the two folders App_Browser & App_Code to your project.
  2. After that, use the following code to create & populate your dropdown List control.
    C#
    //To bind data to dropDown Use ListItem
    
    ListItem item1 = new ListItem("A", "1");
    item1.Attributes["OptionGroup"] = "Alphabet";
     
    ListItem item2 = new ListItem("B", "2");
    item2.Attributes["OptionGroup"] = "Alphabet";
     
    ListItem item3 = new ListItem("One", "3");
    item3.Attributes["OptionGroup"] = "Numbers";
     
    ListItem item4 = new ListItem("Two", "4");
    item4.Attributes["OptionGroup"] = "Numbers";
         
    ddlItems.Items.Add(item1);
    ddlItems.Items.Add(item2);
    ddlItems.Items.Add(item3);
    ddlItems.Items.Add(item4);

License

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


Written By
Software Developer
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 5 Pin
Member 999981916-Jan-22 19:43
Member 999981916-Jan-22 19:43 
QuestionBetter Explanation/example Pin
Member 1134373423-Nov-15 7:38
Member 1134373423-Nov-15 7:38 
BugSelect lost AutoPostBack="true" Pin
Member 1153880319-Mar-15 5:59
Member 1153880319-Mar-15 5:59 
GeneralMy vote of 1 Pin
Pratik Bhuva21-Aug-14 21:00
professionalPratik Bhuva21-Aug-14 21:00 
BugDoesn't Work and the details provided not clear Pin
YashmanGupta4-Jun-14 7:12
YashmanGupta4-Jun-14 7:12 
QuestionOptionGroup is lost Pin
Txarlie5-Nov-13 4:11
Txarlie5-Nov-13 4:11 
GeneralMy vote of 2 Pin
Nitesh Kejriwal17-Aug-13 18:52
professionalNitesh Kejriwal17-Aug-13 18:52 
QuestionRe: My vote of 2 Pin
taranom123423-Dec-13 20:33
taranom123423-Dec-13 20:33 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.