Image i = (Image)e.Item.Cells[1].Controls[0];
i.ImageUrl = yourPath;
> I am trying to change the image in my column depending on the status of the
> db field. All of the data is being populated correctly, I just haven't been
[quoted text clipped - 12 lines]
>
> if(e.Item.ItemType.Equals(System.Web.UI.WebControls.ListItemType.Item) ||
e.Item.ItemType.Equals(System.Web.UI.WebControls.ListItemType.AlternatingIte
m))
> {
> switch(Convert.ToInt32(e.Item.Cells[0].Text))
[quoted text clipped - 9 lines]
>
> David A. Coursey