Bind data into DIV
Hello everyone
Please help me how can i bind data into "IMG" by using the "DIV".I do not want to use gird or another one
<div id="divloading" runat="server" onload="<%#loading() %>" style="overflow: hidden; z-index: 9;" class="product-image product-image-zoom">
<img alt="<%# Eval("Tourname").Tostring %>" title="<%# Eval("Tourname") %>" src="<%# "../../../App_Themes/Image/" & Eval("Image") %>" style="width: 400px; left: -94px; top: -94px;" id="image" />
</div>
------ CODE
Public Function loading() As Data.DataTable
Dim v As String = Request.QueryString("h")
v = Replace(v, "-", " ")
Dim bo As New tblTourBO
Dim dt As Data.DataTable = bo.loading_DetailTour(v)
Return dt
End Function
Thanks all
Phuc Hoang
|