I have a SQL Server 2008 Table with an image typed column which I use to store images in (in SQL Image Type).
I have an ASPX page with a listview on it which is bound to a datatable which is filled from a query that includes that image. The value of image field is fetched while the datatable is filled.
Now I want to show the image for each field of that list view. I use <%# Eval("ColumnA") %>
like syntax to show texts fetched from that query but I do not know how to show the image from that query. (e.g. using which control? using which syntax?)