0
是否可以將圖像對象添加到GridView中?我做了以下,但它不工作......只是文本列的作品!如何將圖像添加到可視化Web部件中的GridView中Sharepoint
DataTable table;
Image blueStar = new Image();
protected void Page_Load(object sender, EventArgs e)
{
blueStar = ImageBlueStar;
table= new DataTable();
table.Columns.Add("Star Image", typeof(Image));
table.Columns.Add("Some Text");
table.Rows.Add(blueStar, "Something");
table.Rows.Add(blueStar, "Something");
GridView1.DataSource = table;
GridView1.DataBind();
}
隨着上面的代碼我的GridView出現,但只是與文本列。
你有什麼在你的標記?我認爲你應該在gridview標記中創建BoundControl並添加html標記來顯示圖像。 –