I have a collection which has items consisting of Id as Integer,Name as String and a IconImage as Byte().
I want to display Name and the image in a gridview but not sure how to bind IconImage to gridview?
<itemtemplate>
<asp:label id="LabelName" runat="server" text='<%# Eval("Name")%>'></asp:label>
</itemtemplate>
<!-- Bind and Display the image here-->
Please help me with some sample code..
Thanks