I have been trying to figure this out all day. I am trying to load a GridView with data from SQL in 3 columns and then dynamically add an image to a 4th column. The data from SQL loads fine but I can not get the images to load no matter what I do. Here is my code:
SqlCommand cmd1 = new SqlCommand("StoredProc", myConnection1);
cmd1.CommandType = CommandType.StoredProcedure;
SqlDataReader reader = cmd1.ExecuteReader();
while (reader.Read())
{
if (reader["ServiceStatus"].ToString().ToLower() == "stopped")
{
ImageField status = new ImageField();
status.HeaderText = "Status";
status.Visible = true;
GridView1.Columns.Add(status);
status.DataAlternateTextFormatString = @"~/Images/Image.gif";
}
GridView1.DataSource = reader;
GridView1.DataBind();
}
I have tried creating a data table and populating that and it still will not work. I know there has to be an easy way to do this. What am I missing?
EDIT:
I am using a TemplateField now and I am getting a default image to show up:
<asp:TemplateField HeaderText="Status">
<ItemTemplate>
<asp:Image ID="Image1" runat="server" ImageUrl="~/Images/greydot.jpg"/>
</ItemTemplate>
</asp:TemplateField>
So how should I reference this ImageURL in my code behind in order to change that image? The images are store in the solution not in SQL.
You can store the path in database or can give path to the respective Image dynamically. Like this: