怎样从数据库中取出数据显示在文本框中?
我的数据库是mssql,里面要操作的表是Student,假设我要显示数据的文本框有两个,分别
命名为,txtid,txtname, 要填入txtid的类型是int型,txtname是varchar型。
SqlConnection con=new SqlConnection(server=.................);
con.open();
建好连接
sqlCommand cmd=new SqlCommand("select * from Student",con)
SqlDataReader sdr=new SqlDataReader();
sdr=cmd.excuteReader();
while(sdr.read())
{
this.txtid.text=?????????
this.txtname.text=????????
}
请问????????部分应该怎么编写?谢谢!!