I have been using ResolveUrl for adding CSS and Javascript in ASP.NET files.

But I usually see an option of ResolveClientUrl. What is the difference between both?

When should I use ResolveClientUrl?

link|improve this question

feedback

3 Answers

up vote 6 down vote accepted

According to the MSDN documentation:

ResolveClientUrl

A fully qualified URL to the specified resource suitable for use on the browser.

Use the ResolveClientUrl method to return a URL string suitable for use by the client to access resources on the Web server, such as image files, links to additional pages, and so on.

ResolveUrl

The converted URL.

If the relativeUrl parameter contains an absolute URL, the URL is returned unchanged. If the relativeUrl parameter contains a relative URL, that URL is changed to a relative URL that is correct for the current request path, so that the browser can resolve the URL.

For example, consider the following scenario:

A client has requested an ASP.NET page that contains a user control that has an image associated with it.

The ASP.NET page is located at /Store/page1.aspx.

The user control is located at /Store/UserControls/UC1.ascx.

The image file is located at /UserControls/Images/Image1.jpg.

If the user control passes the relative path to the image (that is, /Store/UserControls/Images/Image1.jpg) to the ResolveUrl method, the method will return the value /Images/Image1.jpg.

I think this explains it quite well.

link|improve this answer
1  
If MSDN explained the difference well, I wouldn't be here. – Seventh Element Apr 13 at 11:34
feedback

ResolveUrl creates the URL relative to the root.

ResolveClientUrl creates the URL relative to the current page.

You can also use whichever one you want, however ResolveUrl is more commonly used.

link|improve this answer
feedback

Here - decent blog post on the very subject.

link|improve this answer
4  
LMGTFY links are not an appropriate answer. – Brandon Dec 9 '09 at 15:33
I don't think glib responses help anyone. – Phaedrus Dec 9 '09 at 15:33
OK, I'll modify. – Wim Hollebrandse Dec 9 '09 at 15:34
1  
It was an illustrative point. Clearly lost on most. – Wim Hollebrandse Dec 9 '09 at 15:36
1  
@Wim, sorry. I don't speak for everyone, or anyone other than me actually. I was more referring to the fact that the LMGTFY and "teach a man to fish" thing has been gone over before. Usually the discussions take place on Meta (meta.stackoverflow.com/questions/15650/…). So when I say "we" I mean more the general user attitude. – Brandon Dec 9 '09 at 16:17
show 7 more comments
feedback

Your Answer

 
or
required, but never shown

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