Can anyone help out me in getting the URL of the current working page of ASP.NET in C#?

link|improve this question
31  
A bit harsh. Though I agree that original poster could have at least searched on google, but one of the aims of this site is when people search google for a programming question is to have StackOverflow have the answer. – ddd Feb 27 '09 at 10:21
21  
@dean nolan, which is exactly how I got here... – Silmaril89 Feb 15 '11 at 18:13
3  
same here, google search. – Dementic May 30 '11 at 15:46
2  
and me as well! – CrowderSoup Aug 19 '11 at 21:05
Protected to prevent "google got me here too!", or spam answers by new users. – ajbeaven Nov 3 '11 at 22:47
feedback

4 Answers

Try this :

string url = HttpContext.Current.Request.Url.AbsoluteUri;
// http://localhost:1302/TESTERS/Default6.aspx

string path = HttpContext.Current.Request.Url.AbsolutePath;
// /TESTERS/Default6.aspx

string host = HttpContext.Current.Request.Url.Host;
// localhost
link|improve this answer
2  
AbsolutePath appears to return "/" in .NET 3.5 (haven't tested other versions) for paths similar to twitter user accounts, such as twitter.com/#!/user. You can use the Fragment method to get anything after the pound (#). – hoombar Aug 5 '11 at 12:11
Actually these are not correct when used with a rewriting mechanism like UrlRewriter.net because this will give the rewritten URL. You can then use: Request.Url.GetLeftPart(UriPartial.Authority) + Request.RawUrl – Rody van Sambeek Apr 20 at 12:18
what do you do if HttpContext.Current is null? – drzaus May 7 at 18:50
1  
@drzaus if HttpContext.Current is null then you are not processing a page request or you are attempting to access it before it is set. If you need additional help please start a new question. – Trisped May 23 at 3:19
feedback

if you just want the part between http:// and the first slash

string url = Request.Url.Host;

would return stackoverflow.com if called from this page

Here's the complete breakdown

link|improve this answer
Does not include port. Need: HttpContext.Current.Request.Url.Port. – JohnB Apr 8 at 0:53
feedback

Just sharing as this was my solution thanks to Canavar's post.

If you have something like this:

"http://localhost:1234/Default.aspx?un=asdf&somethingelse=fdsa"

or like this:

"https://www.something.com/index.html?a=123&b=4567"

and you only want the part that a user would type in then this will work:

String strPathAndQuery = HttpContext.Current.Request.Url.PathAndQuery;
String strUrl = HttpContext.Current.Request.Url.AbsoluteUri.Replace(strPathAndQuery, "/");

which would result in these:

"http://localhost:1234/"
"https://www.something.com/"
link|improve this answer
feedback

A search landed me at this page, but it wasn't quite what I was looking for. Posting here in case someone else looking for what I was lands at this page too.

There is two ways to do it if you only have a string value.

.NET way:

Same as @Canavar, but you can instantiate a new Uri Object

String URL = "http://localhost:1302/TESTERS/Default6.aspx";
System.Uri uri = new System.Uri(URL);

which means you can use the same methods, e.g.

string url = uri.AbsoluteUri;
// http://localhost:1302/TESTERS/Default6.aspx

string host = uri.host
// localhost

Regex way:

Getting parts of a URL (Regex)

link|improve this answer
Also worth noting that if the string can not be parsed it will throw a System.FormatException. However, the System.Uri.TryCreate method was introduced in .NET 4. – hoombar Aug 5 '11 at 11:21
feedback

protected by Will Oct 14 '10 at 13:34

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.