问题
I have a gridview that gets created in codebehind.
In the below code, I would like to have 3rd column to be some image (Example: PDF icon or similar).
I am thinking Type.GetType needs to be changed for column named "Image"??
DataTable dt = new DataTable();
GridView gview = new GridView();
DataRow dr;
DataColumn dc = new DataColumn("Description", Type.GetType("System.String"));
dt.Columns.Add(dc);
dc = new DataColumn("Image", Type.GetType("System.String"));
dt.Columns.Add(dc);
dc = new DataColumn("Size (MB)", Type.GetType("System.String"));
dt.Columns.Add(dc);
{
dr = dt.NewRow();
dr["Description"] = item["Name"];
dr["Size (MB)"] = item["Size"];
dr["Image"] = "pdf.gif"; // put complete reference here,
dt.Rows.Add(dr);
}
gview.DataSource = dt;
gview.DataBind();
Controls.Add(gview);
回答1:
Just store the image URL in the DataTable rather than the actual image. Then, use a TemplateField in your GridView and put an Image in the ItemTemplate:
<asp:TemplateField>
<ItemTemplate>
<asp:Image ID="Image1" runat="server" ImageUrl='<%# Eval("ImageUrlColumn") %>' ... />
</ItemTemplate>
</asp:TemplateField>
You can also use an ImageField:
<asp:ImageField DataImageUrlField="ImageNameColumn" DataImageUrlFormatString="/images/{0}"></asp:ImageField>
EDIT
When declaring columns, try this instead:
dt.Columns.Add("Image", typeof(string));
And to set the value of the image column, try this:
dr.SetField<string>("Image", "img.png");
回答2:
In grid view put command field column like the following
<asp:CommandField runat="server" ShowDeleteButton="true" ButtonType="Image" DeleteImageUrl="images/delete.png" ></asp:CommandField>
set the gridview property like the following
AutoGenerateDeleteButton="false"
来源:https://stackoverflow.com/questions/7983512/how-to-have-one-of-the-column-in-gridview-to-be-an-image