主题:DropDownList1.SelectedIndexChanged
Protected Sub DropDownList1_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles DropDownList1.SelectedIndexChanged
TextBox2.Text = ""
Me.TextBox2.Text = Me.DropDownList1.SelectedItem.Text.ToString
End Sub
选择之后文本框中的文本不变,这是怎么回事?