как добавить событие SelectedIndexChanged для DropDownList в SharePoint2010?
, если YourDropDownList - это DropDownList:
YourDropDownList
DropDownList
YourDropDownList.SelectedIndexChanged += new EventHandler(your_handling_function);
your_handling_function - это метод, вызванный событием:
your_handling_function
public void your_handling_function(object sender, EventArgs e)