首先是 有张图片:Content/item/images/pic.gif
显示图片的页面 :View/Product/detail.cshtml
如果我想在 detail.cshtml 显示这张图片,<img src="../../Content/item/images/small-load.gif" />
这样写是可以,不过如果放到服务器,也能显示么?还是用<img src="/Content/item/images/small-load.gif" /> 这种呢?
src="@Url.Content("~/Content/item/images/small-load.gif")"
多谢。还想请教下如果JS 跳转又该怎样写呢?View/Product/detail.cshtml 这个页面 是不是location.href="Product/detail" 就可以?
@Sai.:
是的