答案 0 :(得分:2)
您是否尝试过设置Image属性?
获取或设置当此列的单元格中显示的图像 未设置单元格的Value属性和单元格的ValueIsIcon属性 设置为false。
答案 1 :(得分:0)
你可以试试......
for (int i = 0; i < gridView.Columns.Count; i++)
{
TableCell tableCell = gridViewRow.Cells[i];
System.Web.UI.WebControls.Image img;
sortDirectionImageControl = new System.Web.UI.WebControls.Image();
string imageUrl = "~/Images/Myimage.jpg";
img.ImageUrl = imageUrl;
img.Style.Add(HtmlTextWriterStyle.MarginLeft, "10px");
tableCell.Wrap = false;
tableCell.Controls.Add(img);
}
希望我能正确理解你的问题。