后台先把数据库或文本要显示的数据读取出来
然后编写代码this.lable1.text=变量;
this后面输入.后,能直接预览的到lable标签的名字。
若是你前台有拉了一个textbox控件的话,
就直接在后台写
string txt=“数据库查询后所获得的值”
textbox控件名.Text=txt。Tostring();
TextBox textBox = new TextBox();
textBox.Text = "想要的显示的文本";
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);