0

我将图像存储在 asp.net 网站的本地主机上的文件夹中。

图像在那里,并且 src 属性正确形成,但图像未显示在 img 元素中。

有人可以告诉我可能是什么问题或遗漏..当我检查浏览器网址中的图像时,它会正确显示

     localhost:xxxx/TenModified/setX/8fd7976b-d4b0-467a-bc3e-bf2a51d60299.Jpeg

这是我对元素的标记

<img id="ctl00_ctl00_ContentPlaceHolder1_ContentPlaceHolderChild_ListViewThumbs_ctrl1_ctl03_Image1" src="localhost:59657/ProfileTenModified/setP/8fd7976b-d4b0-467a-bc3e-bf2a51d60299.Jpeg" style="border-width:1px;border-style:Solid;height:172px;width:172px;" alt="">
4

5 回答 5

2

您不需要包括域和端口。以下将适用于 src: /ProfileTenModified/setP/8fd7976b-d4b0-467a-bc3e-bf2a51d60299.Jpeg

或完整的标签:

<img id="ctl00_ctl00_ContentPlaceHolder1_ContentPlaceHolderChild_ListViewThumbs_ctrl1_ctl03_Image1" src="/ProfileTenModified/setP/8fd7976b-d4b0-467a-bc3e-bf2a51d60299.Jpeg" style="border-width:1px;border-style:Solid;height:172px;width:172px;" alt="" />
于 2013-04-05T16:40:42.293 回答
1

用这个:

src="ProfileTenModified/setP..."

完整代码:

<img id="ctl00_ctl00_ContentPlaceHolder1_ContentPlaceHolderChild_ListViewThumbs_ctrl1_ctl03_Image1" src="ProfileTenModified/setP/8fd7976b-d4b0-467a-bc3e-bf2a51d60299.Jpeg" style="border-width:1px;border-style:Solid;height:172px;width:172px;" alt="" />
于 2013-04-05T16:48:50.260 回答
1

您应该从路径中删除“localhost:59657”。你真的不需要它,只是相对于root。当您启动没有“localhost:59657”并且只是相对于 root 的应用程序时,这将为您节省大量时间。您无需更改所有路径。任何锚点都是如此。也使这些根相对。

<img id="ctl00_ctl00_ContentPlaceHolder1_ContentPlaceHolderChild_ListViewThumbs_ctrl1_ctl03_Image1" src="/ProfileTenModified/setP/8fd7976b-d4b0-467a-bc3e-bf2a51d60299.Jpeg">
于 2013-04-05T17:23:16.743 回答
0

您的链接缺少协议中的两个正斜杠?

<img id="ctl00_ctl00_ContentPlaceHolder1_ContentPlaceHolderChild_ListViewThumbs_ctrl1_ctl03_Image1" src="localhost//:59657/ProfileTenModified/setP/8fd7976b-d4b0-467a-bc3e-bf2a51d60299.Jpeg" style="border-width:1px;border-style:Solid;height:172px;width:172px;" alt="" />

以及用于关闭图像标签的斜线

于 2013-04-05T16:32:17.623 回答
0

尝试使用前缀。Http 或 Https

http://localhost:xxxx/TenModified/setX/8fd7976b-d4b0-467a-bc3e-bf2a51d60299.Jpeg

<img src="http :// domain:port/TenModified/setX/8fd7976b-d4b0-467a-bc3e-bf2a51d60299.jpeg" />
于 2013-04-05T16:38:01.393 回答