Hi, I have a Listview and What I am trying to do is to display some data and images from northwind db. There is nothing wrong data I can fetch it.But images not displaying.What am i doing wrong?
<asp:ListView ID="ListView1" runat="server" GroupItemCount="3" >
<LayoutTemplate>
<table>
<tr>
<td>
<table border="0">
<asp:PlaceHolder ID="groupPlaceHolder" runat="server"></asp:PlaceHolder>
</table>
</td>
</tr>
</table>
</LayoutTemplate>
<GroupTemplate>
<tr>
<asp:PlaceHolder runat="server" ID="itemPlaceHolder"></asp:PlaceHolder>
</tr>
</GroupTemplate>
<ItemTemplate>
<asp:Ima ...
Go to the complete details ...