用JavaScript也可以实现给DropDownList1添加个属性this.DropDownList1.Attitude["changed"]="changed();";function changed(){ document.all.Form1.TextBox1.value=document.all.Form1.DropDownList1.value;}
dropdownlist AutoPostBack属性设为true在 SelectedIndexChanged事件里textbox1.Text = dropdownlist1.SelectedItem.Text;
谢谢大家,我试过了,问题是:textbox获取到的总是dropdownlist选项中的第一项的内容我绑定的dropdownlist,datatextfield属性是“用户名”,我就是想得用textbox来显示选择的用户名!这样的话,应该怎么设啊?
dropdownlist AutoPostBack属性设为true
在 SelectedIndexChanged事件里textbox1.Text = dropdownlist1.SelectedItem.value;是可以的,不知道你的具體意思是什么??