i have an image tag like
\' />
and in
the <%# .. %> is applied only during data binding. One solution is to manually call DataBind()
<%# .. %>
DataBind()
Try
protected void Page_Load(object sender, EventArgs e) { ImgProduct.DataBind(); }