0

我有这样的两行:

<img height="100" width="100" src="../uploadimages/18-2-2013-23-33-01-Lighthouse.jpg">

<asp:Image id="img_prev" name="img_prev" src="" Height="80" Width="100" runat="server" />
img_prev.ImageUrl = "../uploadimages/18-2-2013-23-33-01-Lighthouse.jpg"

我尝试在 2 个 html 图像和 .net 图像中显示图像,在 html 代码中显示商品,但在 .net 图像中它无法显示到图像。

4

2 回答 2

2

试试这个

<asp:Image id="Img1" runat="server" Height="80" Width="100" ImageUrl="../uploadimages/18-2-2013-23-33-01-Lighthouse.jpg" />

或删除src=""

于 2013-02-21T03:37:20.510 回答
0

您是否有理由尝试使用 asp 图像控件?通常,只有在需要访问服务器端的控件时才需要使用它。

尝试这个。

img_prev.ImageUrl = "~/folder/filename";
于 2013-02-21T03:33:30.433 回答