我正在使用 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...
将 @Url.Content 用于图像 src 会很棒,但我收到一个错误,它不可用。有什么我可以添加或更改以使用它的吗?一旦应用程序在服务器上,我宁愿不需要处理路径并遇到问题。
谢谢!