I am using dynamic ItemTemplate for ListView which populated from database.Here is how I do when I need to display string column "Parametr" (or some other datatypes):
//my .ascx file
<li><%# Eval("Parametr") %> </li>
How can I display varbinary column that stores images?Thanks.
EDIT:
Here is some more code if somebody needed:
<asp:ListView ... DataSourceID="database" ></asp:ListView>
<asp:SqlDataSource ... ID="database" SelectCommand="SELECT image FROM image_table"></asp:SqlDataSource>