Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
SharePoint2010でDropDownListのSelectedIndexChangedイベントを追加する方法は?
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)