I have an ASP.Net page that will be hosted on a couple different servers, and I want to get the URL of the page (or even better: the site where the page is hosted) as a string for use in the code-behind. Any ideas?
|
|
Use this:
That will get you the full path (including http://...) |
|||||||||
|
|
Late answer but incase anyone else finds this post it may be useful. If you want only the scheme and authority part of the request (protocol, host and port) use
This will give you what Jared's sample code will give you, in one line :) |
|||||||||||
|
|
I am using
|
||||
|
|
|
Do you want the server name? Or the host name? Request.Url.Host ala Stephen Dns.GetHostName - Server name Request.Url will have access to most everything you'll need to know about the page being requested. |
|||
|
|
that will give you the full path to the page you are sitting on. I added in the querystring. |
||||
|
|
|
I'm facing same problem and so far I found:
or
|
||||
|
|
|
Using a js file you can capture the following, that can be used in the codebehind as well:
|
||||
|
|
|
If you want to include any unique string on the end, similar to example.com?id=99999, then use the following
|
||||
|
|
|
I use this in my code in a custom class. Comes in handing for sending out emails like no-reply@example.com "no-reply@" + BaseSiteUrl Works fine on any site.
If you want to use it in codebehind get rid of context. |
||||
|
|