asp.net-mvc – MVC帮助 – 使用@URL的图像src?

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – MVC帮助 – 使用@URL的图像src?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用MVC3,并有一个简单的帮助者,为一个状态应用程序绘制一个包含一些文本和图标的框。一个片段:
@helper Tile(string ID)
 {
 <div class="front defaulttile"> 
    <div class="notifybar" id="NotifyBarID" >
    <img alt="" src="@Url.Content("~/Images/img.jpg")" style="display: inline; margin-right: 5px;" />
    <p class="topstatusbartext" id="NotifyBarTextID" >Status bar text</p>
    </div>
etc...

对于图像src使用@ Url.Content将是非常好的,但是我收到一个不可用的错误。有什么我可以添加或更改使用这个?一旦该应用程序在服务器上,我宁可不需要纠正路径和出现问题。

谢谢!

解决方法

看起来有人比我更好地问这个问题。看这个:

In ASP.NET MVC how can use I Url.Content() from code?

您也可以在MVC Helper中使用@Href,如下所示:

src="@Href("../../Images/trend_up.png")" (whatever path is relative to the cshtml file)
-- or --
src="@Href("~/Images/trend_up.png")"

以上是MVC3。

在MVC4中,你会得到这个很好的快捷方式(注意〜):

<img id="img1" src="~/Images/trend_up.png" />

感谢Rick Anderson,Jon Galloway和Eilon Lipton的帮助。

原文链接:https://www.f2er.com/aspnet/252928.html

猜你在找的asp.Net相关文章