vote up 1 vote down star
3

I have a virtual path (example: "~/Images/Banner.jpg") and I want to make that an absolute web path (example: "/ApplicationRoot/Images/Banner.jpg"). There is a method that will do this, I believe in a class called something like HTTPUtility or similar name. Though ever time I need this method, it takes me hours searching for it. It would be greatly appreciated if someone could post the proper method to do this so I can favorite this for easy access in the future.

Thank you very much.

flag

That class is HttpServerUtility, which can accessed using HttpContext.Server property. It contains a MapPath method to accomplish the same task. In fact it's provided for compatibility with classic ASP's Server object. The suggested solution is preferred. – Mehrdad Afshari Dec 9 '08 at 15:53

3 Answers

vote up 7 vote down check
System.Web.VirtualPathUtility.ToAbsolute("yourRelativePath");

There you go :)

link|flag
I actually had the same problem untill I made my own PathHelper class for the asp.net mvc framework :p – boris callens Dec 9 '08 at 15:44
Hehe, yet another place to do this! I guess they all end up at the same place. – leppie Dec 9 '08 at 15:45
I sure hope so :P – boris callens Dec 9 '08 at 15:46
This was exactly the method I keep forgetting.. I don't know why it's so hard for me to remember or find this one. – stephenbayer Dec 9 '08 at 15:50
vote up 2 vote down
Control.ResolveClientUrl(url)

or

Control.ResolveUrl(url)

Whichever one you need (honestly I dont know the difference, as both seem to return mostly the same, perhaps someone can illuminate me :) ).

link|flag
How do you make your verry first line a "code" line? In preview it looks all biscuits and milk, but when I submit it becomes an unformatted line again :s – boris callens Dec 9 '08 at 15:47
Double breakline, found it – boris callens Dec 9 '08 at 15:48
I didnt have that problem. Using FF. – leppie Dec 9 '08 at 15:55
You want illumination, stick a candle up your ass. If you want enlightenment, learn the language. – hmcclungiii Dec 9 '08 at 16:00
vote up 1 vote down

There are various ways that are available in ASP.NET that we can use to resolve relative paths to absolute Urls -

1) Request.ApplicationPath
2) System.Web.VirtualPathUtility
3) Page.ResolveUrl
4) Page.ResolveClientUrl

Here's a article that explains the difference between the various ways to resolving paths in ASP.NET -

Different approaches for resolving URLs in ASP.NET

link|flag

Your Answer

Get an OpenID
or

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