I need to add an image icon to gridview databound at runtime in a specific cell.
I started code already but i'm not sure how to accomplish it because using this code the image don't showing in gridview...
See below:
if (e.Row.RowType == DataControlRowType.DataRow)
{
if (e.Row.DataItem != null)
{
ImageButton image = new ImageButton();
image.ImageUrl = "C:/inetpub/wwwroot/img/add-page-red.gif";
e.Row.Cells[2].Controls.Add(image);
}
}
Any help would greatly appreciate... Thank you.