我想将完整的DataTable
数据绑定到RichTextBox
,但我只使用下面的代码获取一个单元格。如何将第一行数据转换为RichTextBox
?
SqlConnection con = new SqlConnection(@"data source=CENSYS01\SQLEXPRESS; Initial Catalog=myTest; Integrated Security=True");
SqlCommand cmd = new SqlCommand("select * from student", con);
SqlDataAdapter da = new SqlDataAdapter(cmd);
DataTable dt = new DataTable();
da.Fill(dt);
richTextBox1.DataBindings.Add("Text", dt, "Sno" );
答案 0 :(得分:1)
不确定为什么要将db绑定到richtextbox,我建议您使用gridview。它更加灵活,并且有一种炫耀数据的好方法。
查看此页面,有关于如何使用gridviews的好东西
http://www.ezineasp.net/category/ASP-Net-C-Sharp-GridView-Control.aspx
答案 1 :(得分:0)
您可以尝试以下选项之一: