I'm using MVC3 and have a simple helper that draws a box with some text and icons inside for a status application. A snippet:
@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...
It would be great to use @Url.Content for the image src, but I get an error it's not available. Is there something I can add or change to use this? I'd rather not need to juggle paths and having a problem once the app is on the server.
Thanks!