vote up 3 vote down star
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?

flag

60% accept rate
CMS has what I was looking for, something succint and memorable, Stephen Bayer gets a vote for the polish. – rjarmstrong Oct 22 '08 at 21:44

7 Answers

vote up 1 vote down check

You can do it like this:

string.Format("{0}://{1}:{2}", Request.Url.Scheme, Request.Url.Host, Request.Url.Port)

And you'll get the generic URI syntax <protocol>://<host>:<port>

link|flag
I like that, but what if you don't want the port, if the port is 80..?? -- String.Format((Request.Url.Port != 80)?"{0}://{1}:{2}":"{0}://{1}", Request.Url.Scheme, Request.Url.Host, Request.Url.Port) .... or will that break because there's no {2} in some cases – stephenbayer Oct 21 '08 at 18:41
It does work, just tested it... – stephenbayer Oct 21 '08 at 18:51
This won't work if your app is deployed to a virtual directory. – Frank Schwieterman Jul 15 at 21:12
vote up 0 vote down

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.

string.Format("{0}://{1}:{2}{3}", Request.Url.Scheme, Request.Url.Host, Request.Url.Port, ResolveUrl("~")
link|flag
vote up 0 vote down

This method handles http/https, port numbers and query strings.

'Returns current page URL 
Function fullurl() As String
    Dim strProtocol, strHost, strPort, strurl, strQueryString As String
    strProtocol = Request.ServerVariables("HTTPS")
    strPort = Request.ServerVariables("SERVER_PORT")
    strHost = Request.ServerVariables("SERVER_NAME")
    strurl = Request.ServerVariables("url")
    strQueryString = Request.ServerVariables("QUERY_STRING")

    If strProtocol = "off" Then
        strProtocol = "http://"
    Else
        strProtocol = "https://"
    End If

    If strPort <> "80" Then
        strPort = ":" & strPort
    Else
        strPort = ""
    End If

    If strQueryString.Length > 0 Then
        strQueryString = "?" & strQueryString
    End If

    Return strProtocol & strHost & strPort & strurl & strQueryString
End Function
link|flag
vote up 1 vote down

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:

String baseURL = string.Format(
   (Request.Url.Port != 80) ? "{0}://{1}:{2}" : "{0}://{1}", 
    Request.Url.Scheme, 
    Request.Url.Host, 
    Request.Url.Port)
link|flag
vote up 1 vote down

You can use something like this.

System.Web.HttpContext.Current.Server.ResolveUrl("~/")

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!

link|flag
that gives the physical path name, not exactly what he was looking for. ok, well... not at all. – stephenbayer Oct 21 '08 at 18:38
Oops....wrong snippet fixed now – Mitchel Sellers Oct 21 '08 at 18:39
cool.. better.. :) – stephenbayer Oct 21 '08 at 18:42
vote up 1 vote down
this.Request.Url.Host
link|flag
vote up 1 vote down
System.Web.UI.Page.Request.Url
link|flag
This will give the full URL of the page – Mitchel Sellers Oct 21 '08 at 18:02
Try this: Request.ServerVariables["SERVER_PORT_SECURE"] + Request.ServerVariables["SERVER_NAME"] + Request.ServerVariables["SERVER_PORT"] + Request.ApplicationPath; – SaaS Developer Oct 21 '08 at 18:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.