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.
ユーザーが送信ボタンをクリックしたときに、c#WebアプリでDropDownListを休ませようとしています。ポストバックを行うときにデフォルトにリセットするにはどうすればよいですか?誰かが私に例を教えてもらえますか?
どうもありがとう
このコードで試すことができます
DropDownList.ClearSelection();
if(IsPostBack) { dropdownlist.DataSource=null; dropdownlist.DataBind(); }