I've looked through the help and just can't seem to figure out how to do this. In my dropdownlist, I want to create sub menu items for a couple of the items in the list.
Currently the dropdownlist items are being added in the code behind. Like this:
ddlSystem.Items.Add(
new
DropDownListItem(LogFile.CHCS, LogFile.CHCS));
ddlSystem.Items.Add(
new
DropDownListItem(LogFile.DCIPS, LogFile.DCIPS));
ddlSystem.Items.Add(
new
DropDownListItem(LogFile.EPEB, LogFile.EPEB));
So what I'm trying to do is change CHCS so that there are sub items under it that will fly out when you hover over it.
Thanks for any thoughts.
Rodney