Is there a way to display an image on a Boundfield of a dynamically generated GridView where the filename of the image is the data for that column? How can it be implemented?

I have implemented it this way but surely, this isn't right.

column = new BoundField();
column.DataField = "VITALITY_COLOR";
column.HeaderText = "Vitality Color";
column.DataFormatString = "../Style%20Library/OHImages/{0}";
grid.Columns.Add(column);

Kindly advise and thanks in advance.

link|improve this question

64% accept rate
I got it right now. – janejanejane Oct 16 '10 at 6:46
It would be very helpful if you would post your solution here and then accept it. That way others can benefit from what you learned. – BiggsTRC May 8 '11 at 6:28
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.