Let's say I'm hosting a website at http://www.foobar.com.
Is there a way I can programmatically ascertain "http://www.foobar.com/" in my code behind (i.e. without having to hardcode it in my web config)?
|
Let's say I'm hosting a website at http://www.foobar.com. Is there a way I can programmatically ascertain "http://www.foobar.com/" in my code behind (i.e. without having to hardcode it in my web config)? |
||||
|
HttpContext.Current.Request.Url can get you all the info on the URL. And can break down the url into its fragments. |
|||||||||||||||
|
|
For anyone still wondering, a more complete answer is available at http://devio.wordpress.com/2009/10/19/get-absolut-url-of-asp-net-application/.
|
|||||||||||||||||
|
|
|||||||
|
|
||||
|
|
|
To get the entire request URL string:
To get the www.foo.com portion of the request:
Note that you are, to some degree, at the mercy of factors outside your ASP.NET application. If IIS is configured to accept multiple or any host header for your application, then any of those domains which resolved to your application via DNS may show up as the Request Url, depending on which one the user entered. |
|||
|
|
|
|||
|
|
|
C# Example Below:
|
|||
|
|
|
I know this is older but the correct way to do this now is
That will get the DNS or ip address with port for a server. |
|||
|
|
Requestobject. – John Saunders Jul 31 '09 at 20:11