我有一个集合,其中包含由 Id 作为 Integer、Name 作为 String 和 IconImage 作为 Byte() 的项目。
我想在网格视图中显示名称和图像,但不确定如何将 IconImage 绑定到网格视图?
<itemtemplate>
<asp:label id="LabelName" runat="server" text='<%# Eval("Name")%>'></asp:label>
</itemtemplate>
<!-- Bind and Display the image here-->
请帮我一些示例代码..
谢谢