我的Asp页面中有两个下拉框。一旦用户更改了下拉列表中的值之一,它就会激活Autopostback并在标签上显示新的选定值。
label.text = Convert.ToString(Convert.Int32(DropDownList1.SelectedValue.ToString())+Convert.Int32(DropDownList2.SelectedValue.ToString()));
我只想将此标签值(动态再现)检索到另一个文本框。
不幸的是,没有名为AutoPostBack的事件用于标签。我怎么能克服这个? 请帮我。
答案 0 :(得分:1)
更新标签值时更新文本框值。
label.text = Convert.ToString(Convert.Int32(DropDownList1.SelectedValue.ToString())+Convert.Int32(DropDownList2.SelectedValue.ToString()));
textBox.text = label.text
答案 1 :(得分:0)
string Label_Value =Convert.ToString(Convert.Int32(DropDownList1.SelectedValue.ToString())+Convert.Int32(DropDownList2.SelectedValue.ToString()));
Textbox1.Text=Label_Value .Tostring();