How do you find the base url from a DLL in C#? - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T17:57:44Zhttp://stackoverflow.com/feeds/question/196407http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/196407/how-do-you-find-the-base-url-from-a-dll-in-c0How do you find the base url from a DLL in C#?Guy2008-10-13T00:38:36Z2008-12-03T16:40:36Z
<p>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?</p>
http://stackoverflow.com/questions/196407/how-do-you-find-the-base-url-from-a-dll-in-c/196414#1964140Answer by DannySmurf for How do you find the base url from a DLL in C#?DannySmurf2008-10-13T00:41:40Z2008-10-13T00:41:40Z<p>You can use Assembly.GetExecutingAssembly() to get the assembly object for the DLL.</p>
<p>Then, call Server.MapPath, passing in the FullPath of that Assembly to get the local, rooted path.</p>
http://stackoverflow.com/questions/196407/how-do-you-find-the-base-url-from-a-dll-in-c/196464#1964645Answer by Alexander Kojevnikov for How do you find the base url from a DLL in C#?Alexander Kojevnikov2008-10-13T01:22:50Z2008-10-13T01:49:35Z<p>Will this work?</p>
<pre><code>HttpContext.Current.Request.Url
</code></pre>
<p>UPDATE:</p>
<p>To get the base URL you can use:</p>
<pre><code>HttpContext.Current.Request.Url.GetComponents(UriComponents.SchemeAndServer, UriFormat.Unescaped)
</code></pre>
http://stackoverflow.com/questions/196407/how-do-you-find-the-base-url-from-a-dll-in-c/196473#1964730Answer by Guy for How do you find the base url from a DLL in C#?Guy2008-10-13T01:35:03Z2008-10-13T01:35:03Z<p>I've come up with this although I'm not sure if it's the best solution:</p>
<pre><code>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;
}
}
</code></pre>
http://stackoverflow.com/questions/196407/how-do-you-find-the-base-url-from-a-dll-in-c/198126#1981260Answer by Pablo for How do you find the base url from a DLL in C#?Pablo2008-10-13T16:10:40Z2008-10-13T16:10:40Z<p>If it's an assembly that might be referenced by non-web projects then you might want to avoid using the System.Web namespace. </p>
<p>I would use DannySmurf's method.</p>
http://stackoverflow.com/questions/196407/how-do-you-find-the-base-url-from-a-dll-in-c/303631#3036310Answer by netadictos for How do you find the base url from a DLL in C#?netadictos2008-11-19T22:29:33Z2008-11-19T22:29:33Z<p>As Alexander says, you can use HttpContext.Current.Request.Url but if you doesn't want to use the http://:</p>
<pre><code>HttpContext.Current.Request.Url.GetComponents(UriComponents.HostAndPort, UriFormat.Unescaped);
</code></pre>