0

我的 Asp 页面中有两个下拉框。一旦用户更改了下拉列表的值之一,它就会触发 Autopostback 并在标签上显示新的选定值。

label.text = Convert.ToString(Convert.Int32(DropDownList1.SelectedValue.ToString())+Convert.Int32(DropDownList2.SelectedValue.ToString()));

我只想将此标签值(动态重现)检索到另一个文本框。

不幸的是,标签没有称为 AutoPostBack 的事件。我该如何克服呢?请帮我。

4

2 回答 2

1

在更新标签值时更新文本框值。

label.text = Convert.ToString(Convert.Int32(DropDownList1.SelectedValue.ToString())+Convert.Int32(DropDownList2.SelectedValue.ToString()));
textBox.text = label.text
于 2012-05-26T13:10:03.170 回答
0
string Label_Value =Convert.ToString(Convert.Int32(DropDownList1.SelectedValue.ToString())+Convert.Int32(DropDownList2.SelectedValue.ToString()));

Textbox1.Text=Label_Value .Tostring();
于 2012-05-26T13:11:08.347 回答