hi
i use these code to dispalying image from database
http://www.aspsnippets.com/Articles/Display-Images-from-SQL-Server-Database-using-ASP.Net.aspx
i use these code for my data list
<asp:DataList ID="DataList1" runat="server" RepeatColumns="4"
RepeatDirection="Horizontal">
<ItemTemplate>
<table class="DDLh">
<tr>
<td class="TDH" align="center">
<asp:image ID="img1" runat="server" CssClass="TPH" ImageUrl='<%#Eval("image","image/house/{0}")%>' BorderStyle="Solid" BorderWidth="1px" BorderColor="#c9c9c7" />
</td>
</tr>
<tr>
<td align="center" style="height:20px">
<asp:Label ID="Label2" runat="server" Text='<%# Eval("Name") %>'></asp:Label>
</td>
</tr>
</tr>
</table>
</ItemTemplate>
</asp:DataList>
for dispalying image we should write this code
<asp:image ToolTip = "ASP Image Control" ID="Image13" runat="server" ImageUrl ="~/imageH.aspx?ImageID=48" Height="156px" Width="174px"></asp:image>
now here in my data list what should i write instead of this code?untill it show my image from database?
<asp:image ID="img1" runat="server" CssClass="TPH" ImageUrl='<%#Eval("image","image/house/{0}")%>' BorderStyle="Solid" BorderWidth="1px" BorderColor="#c9c9c7" />
</td>
Thanks alot