这是我第一次从我的localhost上传到一个站点,在MVC框架上构建。我真的不明白为什么我的图像没有显示。
在我的localhost上,路径为:<img src="~/img/logo-white-small.png">
,它与服务器上的路径相同。
我在stackoverflow上阅读并看到了有关此问题的其他问题。我尝试了以下可能性,但它们仍未显示。有没有人知道为什么会这样,以及我如何解决它?
我尝试过:
<img src="~/img/logo-white-small.png">
<img src='<%=Url.Content("~/img/logo-white-small.png") %>'
<img src="Url.Content("~/img/logo-white-small.png")">