2

如何在 SharePoint2010 中为 DropDownList 添加 SelectedIndexChanged 事件?

4

1 回答 1

2

如果YourDropDownListDropDownList

YourDropDownList.SelectedIndexChanged += new EventHandler(your_handling_function);

your_handling_function是事件触发的方法:

public void your_handling_function(object sender, EventArgs e)
于 2011-04-26T08:04:25.187 回答