asp.net如何点击重置按钮将DropDownList中的值返回为默认值
在页面上用button做了一个重置按钮,如何在点击后将DropDownList中的值返回为默认值?原来用<inputid="btnReset"type="reset"va...
在页面上用button做了一个重置按钮,如何在点击后将DropDownList中的值返回为默认值?
原来用<input id="btnReset" type="reset" value="重置" /> 可以做到,但这样使用搜索功能就无法重置,只能在页面一开始用!
现在用的是<asp:Button ID="btnReset" runat="server" Text="重置" onclick="btnReset_Click" />按钮,在点击事件中将所有文本框清除,但DropDownList是要返回默认值,要如何实现? 展开
原来用<input id="btnReset" type="reset" value="重置" /> 可以做到,但这样使用搜索功能就无法重置,只能在页面一开始用!
现在用的是<asp:Button ID="btnReset" runat="server" Text="重置" onclick="btnReset_Click" />按钮,在点击事件中将所有文本框清除,但DropDownList是要返回默认值,要如何实现? 展开
3个回答
展开全部
DropDownList1.SelectedIndex = DropDownList1.Items.IndexOf(DropDownList1.Items.FindByValue(....));
或
DropDownList1.SelectedIndex = DropDownList1.Items.IndexOf(DropDownList1.Items.FindByText(....));
或
DropDownList1.SelectedIndex = DropDownList1.Items.IndexOf(DropDownList1.Items.FindByText(....));
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你可以在后台代码写 TextBox1.Text="";
来清除文本框的值,可以通过DropDownList.SelectIndex=DropDownList默认索引来设置DropDownList的选中项
来清除文本框的值,可以通过DropDownList.SelectIndex=DropDownList默认索引来设置DropDownList的选中项
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询