What is the simplest way to get: http://www.[Domain].com in asp.net?
There doesn't seem to be one method which can do this, the only way I know is to do some string acrobatics on server variables or Request.Url. Anyone?
|
1
|
What is the simplest way to get: http://www.[Domain].com in asp.net? There doesn't seem to be one method which can do this, the only way I know is to do some string acrobatics on server variables or Request.Url. Anyone?
|
||
|
|
|
You can do it like this:
And you'll get the generic URI syntax <protocol>://<host>:<port> |
||||||
|
|
|
I had to deal with something similar, I needed a way to programatically set the tag to point to my website root. The accepted solution wasn't working for me because of localhost and virtual directories stuff. So I came up with the following solution, it works on localhost with or without virtual directories and of course under IIS Websites.
|
||
|
|
|
|
This method handles http/https, port numbers and query strings.
|
||
|
|
|
|
I really like the way CMS handled this question the best, using the String.Format, and the Page.Request variables. I'd just like to tweak it slightly. I just tested it on one of my pages, so, i'll copy the code here:
|
||
|
|
|
|
You can use something like this.
It maps to the root of the application. now if you are inside of a virtual directory you will need to do a bit more work. Edit Old posting contained incorrect method call! |
||||||
|
|
|
|
||
|
|
|
|
|
||||
|