C#如何将下拉列表中选中的数据放入文本框

2024-12-01 00:46:51
推荐回答(2个)
回答1:

可以在SelectedIndexChanged事件中设置 比如
protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
TextBox1.Text = DropDownList1.SelectedValue ;
}

回答2:

在下拉列表框的SelectIndexChange事件中对当前选中的值进行设置。