asp.net - Problem Loading Picture on DataList using Firefox? -


it web browser compatibility issue?

when used ie show images , when tried mozilla firefox show nothings..

here's code:

<td style="width: 216px; height: 50px;"> <asp:image id="img_events" runat="server" height="40px" width="62px" imageurl='<%# eval("le_picturepath") %>' /></td> 

use resolveurl property try work.

<td style="width: 216px; height: 50px;">      <asp:image id="img_events" runat="server" height="40px" width="62px" imageurl='<%#resolveurl ("~/" + eval("le_picturepath")) %>' /></td> 

Comments