Click to See Complete Forum and Search --> : Drop down list calendar


dummyagain
July 29th, 2006, 10:13 PM
I would like to ask how to add a onclick listener to a drop down list? I cannot find such selection in VS2005.

Thank you

mcmcom
July 31st, 2006, 03:56 PM
this.myControl.click += new System.EventHandler(theClick_eventClass);


if you want the drop down list to AutoPostBack set AutoPostBack = true in the control as well.

hth,
mcm