先用command方法返回结果,然后tostring(),
然后赋值给label.text属性即可。
-------------
读取图片,和在页面上显示图片就更简单了。
参考源代码例子:
http://hi.baidu.com/44498/blog/item/388a1f1969a78e70dbb4bdc3.html
public void Button1_Click(object sender EventAges e)
{
this.Image1.ImageUrl=dt.Rows[0]["数据库中列名"].ToString();
//显示图片
}
con = DbHelp.getCon();
SqlDataAdapter sda = new SqlDataAdapter(sqlStr, con);
DataSet ds = new DataSet();
sda.Fill(ds);
this.Image1.ImageUrl=dt.Rows[0]["数据库中列名"].ToString();
参照,
http://zhidao.baidu.com/question/74629916.html
如果不明白,可以在线