views:

4956

answers:

7

Is there any way to get HttpContext.Current.Request.Url.Host and HttpContext.Current.Request.ApplicationPath in one call?

Something like "full application url"?

EDIT: Clarification - what I need is this the part within []:

http://[www.mysite.com/mywebapp]/Pages/Default.aspx

I ask simply out of curiosity.

EDIT 2: Thanks for all the replies, but none of them were exactly what I was looking for. FYI, I solved the problem this way (but am still interested in knowing if there's a smoother way):

public string GetWebAppRoot()
{
    if(HttpContext.Current.Request.ApplicationPath == "/")
        return "http://" + HttpContext.Current.Request.Url.Host;
    else
        return "http://" + HttpContext.Current.Request.Url.Host + HttpContext.Current.Request.ApplicationPath;
}
A: 

Is HttpContext.Current.Request.Url.PathAndQuery what you need?

MartinHN
Thanks, but no - that doesn't give you the host, and it also gives you the URI of the ASPX-page it's called from. I only want host + application path.
Marcus L
A: 

Check this post:

public static Uri GetBaseUrl(HttpRequest request)
{
    Uri contextUri = new Uri(request.Url, request.RawUrl);
    UriBuilder realmUri = new UriBuilder(contextUri) { Path = request.ApplicationPath, Query = null, Fragment = null };
    return realmUri.Uri;
}

public static string GetAbsoluteUrl(HttpRequest request, string relativeUrl)
{
    return new Uri(GetBaseUrl(request), VirtualPathUtility.ToAbsolute(relativeUrl)).AbsoluteUri;
}

If you don't get what you need from GetBaseUrl direcly, is should be possible to do:

GetAbsoluteUrl(HttpContext.Current.Request, "/")

veggerby
A: 

HttpContext.Current.Request.Url.AbsoluteUri

Raj
Thanks, but no - that gives you the full path of the ASPX-page it's called from. I only want host + application path, not page path.
Marcus L
+5  A: 
public static string GetSiteRoot()
{
  string port = System.Web.HttpContext.Current.Request.ServerVariables["SERVER_PORT"];
  if (port == null || port == "80" || port == "443")
    port = "";
  else
    port = ":" + port;

  string protocol = System.Web.HttpContext.Current.Request.ServerVariables["SERVER_PORT_SECURE"];
  if (protocol == null || protocol == "0")
    protocol = "http://";
  else
    protocol = "https://";

  string sOut = protocol + System.Web.HttpContext.Current.Request.ServerVariables["SERVER_NAME"] + port + System.Web.HttpContext.Current.Request.ApplicationPath;

  if (sOut.EndsWith("/"))
  {
    sOut = sOut.Substring(0, sOut.Length - 1);
  }

  return sOut;
}
MartinHN
IIRC SERVER_NAME might not get you the hostname you need - e.g. host-header resolution (http://msdn.microsoft.com/en-us/library/ms524602.aspx)! Correct me if I'm wrong :)
veggerby
I've used this one for years, on different sites - and it gives you the server name of the request made, which is all from http:// to the first /
MartinHN
If this works, thanks a bunch. Was looking for something that would work with non-standard ports and with urls like https://www.blah.com/web/test/hello.aspx. I'll give it a spin.
infocyde
It worked. Thanks.
infocyde
+1  A: 

Thanks for all the replies, but none of them were exactly what I was looking for. FYI, I solved the problem this way (but am still interested in knowing if there's a smoother way):

public string GetWebAppRoot()
{
    if(HttpContext.Current.Request.ApplicationPath == "/")
        return "http://" + HttpContext.Current.Request.Url.Host;
    else
        return "http://" + HttpContext.Current.Request.Url.Host + HttpContext.Current.Request.ApplicationPath;
}
Marcus L
what if it is https ?
codemeit
Yes, my solution doesn't really handle that, but this would:return String.Format("{0}://{1}/", Request.Url.Scheme, Request.Url.Host);
Marcus L
A: 

What you should really do is:

return String.Format("{0}://{1}/", Request.Url.Scheme, Request.Url.Host);

That way it works if you are using HTTPS (or some other schema!)

Dan Diplo
+3  A: 

This was not working on my localhost with a port number so made minor modification:

  private string GetWebAppRoot()
    {
        string host = (HttpContext.Current.Request.Url.IsDefaultPort) ? 
            HttpContext.Current.Request.Url.Host : 
            HttpContext.Current.Request.Url.Authority;
        host = String.Format("{0}://{1}", HttpContext.Current.Request.Url.Scheme, host);            
        if (HttpContext.Current.Request.ApplicationPath == "/")
            return host;
        else
            return host + HttpContext.Current.Request.ApplicationPath;
    }
Samuel