如题  谢谢!

解决方案 »

  1.   

    sorry  题目写错了  怎样将数据库中读到的一个表中的一列属性值依次读入一个TextBox中????谢谢~!!!!
      

  2.   

    将查询出来的数据转化为list集合,遍历集合中的所有值加入到textbox中
      

  3.   

    this.TextBox1.Text=dt.Rows[0][1].ToString()+dt.Rows[1][1].ToString()+dt.Rows[2][1].ToString()...;
    不知道你是不是要这样的结果?
      

  4.   

    string strTemp="";
    for(int i =0 ;i<ds.Table[0].Rows.Count;i++)
    {
      strTemp+=ds.Table[0].Rows[i]["列名"].ToString();
    }
    TextBox1.Text = strTemp;
      

  5.   

    数据量大的话最好用stringBuilder 来做·
            StringBuilder sb = new StringBuilder();
            sb.Append();不要用+号~~
    否则性能非常地下