Hi:
Using the asp:GridView, I have been able to successfully display thumbnail images stored in my database in the GridView Cells. I have done this using Template Fields and a custom control that fetches the bit stream from the database. I have been trying to do this using the RadGrid but have been unsuccesful. Any Suggestions?
Regards,
Roger
<asp:TemplateField HeaderText="Image">
<itemtemplate>
<asp:Image ID="SmallPic2" runat="server" ImageUrl='<%# "~/Controls/Fetch_Pic.ashx?ProductPicID="+ Eval("PicID") + "&Size=Small" %>' />
</itemtemplate>
</asp:TemplateField>
Using the asp:GridView, I have been able to successfully display thumbnail images stored in my database in the GridView Cells. I have done this using Template Fields and a custom control that fetches the bit stream from the database. I have been trying to do this using the RadGrid but have been unsuccesful. Any Suggestions?
Regards,
Roger
<asp:TemplateField HeaderText="Image">
<itemtemplate>
<asp:Image ID="SmallPic2" runat="server" ImageUrl='<%# "~/Controls/Fetch_Pic.ashx?ProductPicID="+ Eval("PicID") + "&Size=Small" %>' />
</itemtemplate>
</asp:TemplateField>