C#中,如何让TextBox控件显示数据库中我要的数据或者文本

4l,我想要的效果是直接在TextBox中显示..不是用label...
2024-11-04 17:27:21
推荐回答(4个)
回答1:

后台先把数据库或文本要显示的数据读取出来
然后编写代码this.lable1.text=变量;
this后面输入.后,能直接预览的到lable标签的名字。

回答2:

若是你前台有拉了一个textbox控件的话,
就直接在后台写
string txt=“数据库查询后所获得的值”
textbox控件名.Text=txt。Tostring();

回答3:

TextBox textBox = new TextBox();
textBox.Text = "想要的显示的文本";

回答4:

textbox1.text=dt.rows[0]["UserName"].toString();
textbox2.text=dt.rows[0]["PassWord"].toString();

SqlConnection con = new SqlConnection();
con.connectionString="";
con.Open();
SqlCommand cmd = new SqlCommand();
cmd.Connection = con;
cmd.CommandText = "select * from tb_users";
SqlDataAdapter sda = new SqlDataAdapter();
sda.SelectCommand = cmd;
DataTable dt=new DataTable();
sda.Fill(dt);