How do you find the base url from a DLL in C#? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T17:57:44Z http://stackoverflow.com/feeds/question/196407 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/196407/how-do-you-find-the-base-url-from-a-dll-in-c 0 How do you find the base url from a DLL in C#? Guy 2008-10-13T00:38:36Z 2008-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#196414 0 Answer by DannySmurf for How do you find the base url from a DLL in C#? DannySmurf 2008-10-13T00:41:40Z 2008-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#196464 5 Answer by Alexander Kojevnikov for How do you find the base url from a DLL in C#? Alexander Kojevnikov 2008-10-13T01:22:50Z 2008-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#196473 0 Answer by Guy for How do you find the base url from a DLL in C#? Guy 2008-10-13T01:35:03Z 2008-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#198126 0 Answer by Pablo for How do you find the base url from a DLL in C#? Pablo 2008-10-13T16:10:40Z 2008-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#303631 0 Answer by netadictos for How do you find the base url from a DLL in C#? netadictos 2008-11-19T22:29:33Z 2008-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>