my pictures are stored in my database as binary data.
How can I show them in my itemtemplate tag in asp?
I established the network and everything needed.
for string data I'm using the following tags
<ItemTemplate>
<asp:Label ID="lblProvider" runat="server" Text='<%#Eval("Provider") %>' />
</ItemTemplate>
my column in the database is called Provider.
Now for the picture part, the column is called Picture,
this is ofcourse not working
<asp:TemplateField HeaderText="Picture" SortExpression="Picture" >
<ItemTemplate>
<asp:Label ID="lblimage" runat="server" Text='<%#Eval("Picture") %>' />
</ItemTemplate>
</asp:TemplateField>
How can I show the picture in the gridview?