When building code like this:

<script type="text/javascript" src="<%=ResolveUrl("~/js/js.js")%>"></script>

or

<input type="image" src="<%=ResolveUrl("~/img/submit.png")%>" />

Should I use Url.Content or ResolveUrl()? What's the difference?

link|improve this question

feedback

3 Answers

up vote 11 down vote accepted

If you're using IIS URL Rewriting within your MVC application, e.g. internally treating http://yoursubdomain.example.com/MyController/MyAction as http://hosted.example.com/yoursubdomain/MyController/MyAction, Url.Content() will generate a correct subdomain-relative link. ResolveUrl() will generate an incorrect link in this situation.

link|improve this answer
feedback

Url.Content is more MVCish as it is the normal. ResolveUrl has been around since the beginning of ASP.NET.

link|improve this answer
@Darin Any reason to use one over the other? – Michael Haren Mar 10 '10 at 15:56
1  
In an MVC application I would prefer Url.Content. It's kind of more unit-testable friendly. – Darin Dimitrov Mar 10 '10 at 16:16
feedback

I prefer to capture site root into local variable and reuse it

<% var siteroot = Url.Content("~/") %>

<script type="text/javascript" src="<%: siteroot %>Script/jquery-1.4.1.js"></script>
<script type="text/javascript" src="<%: siteroot %>Script/jquery.validate.js"></script>

It should save a few ms :)

link|improve this answer
7  
This probably saves less than a few milliseconds. – Paul Mendoza Feb 9 '11 at 19:47
I think it makes it easier to read. – Cameron Taggart Apr 28 at 0:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.