micah says:
<span class="image">
<asp:Image ID="Image1" runat="server" ImageUrl='<%# String.Format("PROFILEPHOTOS/{0}",Eval("FImageName").ToString()) %>' class="media-object img-rounded animated fadeInDown"
style="width: 45px; height: 45px;"/>
</span>
replace above with below
<span >
<asp:Image ID="Image1" runat="server" ImageUrl='<%# String.Format("PROFILEPHOTOS/{0}",Eval("FImageName").ToString()) %>' class="image media-object img-rounded animated fadeInDown"
Style="width: 45px; height: 45px;" />
</span>
micah says:
$(".image", table).html(this.Image);
and replace above with below
$(".image", table).attr('src', 'PROFILEPHOTOS/' + this.Image);