vote up 0 vote down star
1

From within a DLL that's being called by a C#.NET web app, how do you find the base url of the web app?

flag

73% accept rate
Can you post an example of the full URL and what you want? – Brian R. Bondy Oct 13 '08 at 0:41

5 Answers

vote up 5 vote down check

Will this work?

HttpContext.Current.Request.Url

UPDATE:

To get the base URL you can use:

HttpContext.Current.Request.Url.GetComponents(UriComponents.SchemeAndServer, UriFormat.Unescaped)
link|flag
Thanks Alexander - I worked out something using that part of HttpContext. – Guy Oct 13 '08 at 1:35
vote up 0 vote down

You can use Assembly.GetExecutingAssembly() to get the assembly object for the DLL.

Then, call Server.MapPath, passing in the FullPath of that Assembly to get the local, rooted path.

link|flag
I'm looking for the URL of the site not the directory path. Thanks! – Guy Oct 13 '08 at 0:45
vote up 0 vote down

I've come up with this although I'm not sure if it's the best solution:

string _baseUrl = String.Empty;
HttpContext httpContext = HttpContext.Current;
if (httpContext != null)
{
    _baseURL = "http://" + HttpContext.Current.Request.Url.Host;
    if (!HttpContext.Current.Request.Url.IsDefaultPort)
    {
    	_baseURL += ":" + HttpContext.Current.Request.Url.Port;
    }
}
link|flag
Check my updated answer for an alternative solution. – Alexander Kojevnikov Oct 13 '08 at 1:50
vote up 0 vote down

If it's an assembly that might be referenced by non-web projects then you might want to avoid using the System.Web namespace.

I would use DannySmurf's method.

link|flag
vote up 0 vote down

As Alexander says, you can use HttpContext.Current.Request.Url but if you doesn't want to use the http://:

HttpContext.Current.Request.Url.GetComponents(UriComponents.HostAndPort, UriFormat.Unescaped);
link|flag

Your Answer

Get an OpenID
or

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