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?
|
feedback
|
|
According to the MSDN documentation:
I think this explains it quite well. | |||||
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. | ||||
|
feedback
|
|
Here - decent blog post on the very subject. | |||||||||||||||||
feedback
|