我有leafshape tableImage数据表有图像格式的图像
从表中获取数据为
public DataSet GetLeafShape(string con)
{
string query = "SELECT * FROM LeafShape";
try
{
return SqlHelper.ExecuteDataset(con, CommandType.Text, query);
}
catch (SqlException ex)
{
throw ex;
}
catch (Exception ex)
{
throw ex;
}
}
我想将此数据传递给gridview。我该怎么做?
我试试这个,但图像没有显示。如何将数据转换为图像?
GridViewleaf.DataSource = ds.Tables[0];
GridViewleaf.DataBind();
谢谢。