Can anyone help out me in getting the URL of the current working page of ASP.NET in C#?
feedback
|
|
Try this :
| |||||||||||||
feedback
|
|
if you just want the part between http:// and the first slash
would return stackoverflow.com if called from this page Here's the complete breakdown | |||
|
feedback
|
|
Just sharing as this was my solution thanks to Canavar's post. If you have something like this:
or like this:
and you only want the part that a user would type in then this will work:
which would result in these:
| |||
|
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
which means you can use the same methods, e.g.
Regex way: | |||
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.