asp.net c# DropDownList控件
发布网友
发布时间:2022-10-18 02:07
我来回答
共1个回答
热心网友
时间:2023-11-05 22:31
在DropDownList控件的SelectedIndexChanged(好像是这么拼记不太清了)事件中添加代码
string comStr="select bid from jieshuxinxi where id='"+DropDownList1.Text+"'";
SqlCommond com=new SqlCommond(conn,comStr);
conn.Open();
DataReader dr=com.ExcuteReader();
dr.Open();
TextBox1.Text=dr.GetString(0);
dr.Close();
conn.Close();
大致如此 可能当中有些关键字拼写的不是很正确