Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I get the application relative url from Request.Url.AbsolutePath?

VirtualPathUtility seems to only work with ~/XXX urls?

share|improve this question
Hi, take a look here: stackoverflow.com/questions/3681052/… – Felipe Oriani Mar 14 '12 at 11:52
@felipeoriani: That's relative path to absolute (opposite to what I want). – jgauffin Mar 14 '12 at 11:55
Is Request.ApplicationPath what you want ? – V4Vendetta Mar 14 '12 at 12:00
@PankajGarg Didn't get your point (if you made any) :) – V4Vendetta Mar 14 '12 at 17:27

3 Answers

up vote 4 down vote accepted

I solved it like this:

// create an absolute path for the application root
var appUrl = VirtualPathUtility.ToAbsolute("~/");

// remove the app path (exclude the last slash)
var relativeUrl = HttpContext.Current.Request.Url.AbsolutePath.Remove(0, appUrl.Length - 1);
share|improve this answer
Improved the compilation errors. Sorry forgot to tell you. – abcdefghi Mar 16 '12 at 8:29
 String appUrl = VirtualPathUtility.ToAbsolute("~/");
 String RelativePath = new System.Uri(Page.Request.Url, "").PathAndQuery.Substring(appUrl.Length-1)
share|improve this answer
Hwow do that generate an application relative url? – jgauffin Mar 14 '12 at 14:28
Suppose I have a URL http://localhost:49484/Website/Default.aspx This will give you /Default.aspx – abcdefghi Mar 14 '12 at 14:31
Hope this can be useful for you now... – abcdefghi Mar 14 '12 at 14:45
You are doing the same thing as I did in my answer, but slightly more complex? – jgauffin Mar 14 '12 at 14:53
Difference is the class and approach and result are same with same line of code as you mentioned... – abcdefghi Mar 14 '12 at 14:59

Its a little late to answer but there is a elegant solution to this. You can use

Request.Url.PathAndQuery

This will return the relative path of the page.

For example, if the URL is www.example.com/products?A=a&B=b&C=c, the above piece of code will return /products?A=a&B=b&C=c

share|improve this answer
That's not a relative url. It's an absolute path from the root. Would not work for virtual directories. – jgauffin Jul 31 '12 at 6:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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