In my razor style helper class (located in the App_Code folder, I’ve got this line of code:
<img src="../../Content/images/ajax_activity.gif" alt="loading"/>
This works fine in Cassini, but when I deploy the app to IIS (virtual directory), IIS can’t find the path. The virtual path is being ignored.
This also doesn’t work:
<img src="@Href("~/Content/images/ajax_activity.gif")" alt="loading" />
OK, solved it, though I’m not really sure why it’s working. After trying all the following combinations without success:
the following finally worked as expected
It returned the image path correctly with the virtual directory set. Anyone able to explain this?