如何通过 DropDownList将数据库中的信息在TextBox中显示出来。小白在线等大神帮帮忙~~~
下面的示例是绑定GriView,请大神改成绑定TextBox,或有其他方法也请告知privatevoidGetUserName(stringUserName){//从we...
下面的示例是绑定GriView,请大神改成绑定TextBox ,或有其他方法也请告知
private void GetUserName(string UserName)
{
//从web.config中获取数据库连接
string connectionStr = WebConfigurationManager.ConnectionStrings["NorthwindConnectionString"].ConnectionString;
//创建与数据库的连接
SqlConnection conn = new SqlConnection(connectionStr);
conn.Open();
SqlCommand cmd = new SqlCommand("select UserName * from userInfor where UserName=@UserName", conn);
SqlDataReader sdr= cmd.ExecuteReader(CommandBehavior.CloseConnection);
//下面是绑定GriView,请改成绑定TextBox
//GridView1.DataSource = sdr;
//GridView1.DataBind();
//conn.Dispose();
}
达到的效果是:将在下拉框中的信息动态的在TextBox中显示出来
最好是可以给出实现的代码,谢谢 展开
private void GetUserName(string UserName)
{
//从web.config中获取数据库连接
string connectionStr = WebConfigurationManager.ConnectionStrings["NorthwindConnectionString"].ConnectionString;
//创建与数据库的连接
SqlConnection conn = new SqlConnection(connectionStr);
conn.Open();
SqlCommand cmd = new SqlCommand("select UserName * from userInfor where UserName=@UserName", conn);
SqlDataReader sdr= cmd.ExecuteReader(CommandBehavior.CloseConnection);
//下面是绑定GriView,请改成绑定TextBox
//GridView1.DataSource = sdr;
//GridView1.DataBind();
//conn.Dispose();
}
达到的效果是:将在下拉框中的信息动态的在TextBox中显示出来
最好是可以给出实现的代码,谢谢 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询