Sorry my bad, Is that my brain sleeping? :zzz: I think it is!
T
t lab
@t lab
Posts
-
Newbie: Programaticaly adding items to a dropdown menu? -
Newbie: Programaticaly adding items to a dropdown menu?Have a look at Link Buttons. If the list of names is done on the fly add a unique ID to each LinkButton. This should help if i have got the idea of what you are asking LinkButton yourButtonName = new LinkButton(); yourButtonName.Command +=new CommandEventHandler(yourButtonName_Click); private void yourButtonName_Click(object sender, CommandEventArgs e) { } tlab tlab
-
Newbie: Programaticaly adding items to a dropdown menu?Have a look at Link Buttons. If the list of names is done on the fly add a unique ID to each LinkButton. This should help if i have got the idea of what you are asking LinkButton yourButtonName = new LinkButton(); yourButtonName.Command +=new CommandEventHandler(yourButtonName_Click); private void yourButtonName_Click(object sender, CommandEventArgs e) { } tlab