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?
|
1
|
|||
|
|
|
Will this work?
UPDATE: To get the base URL you can use:
|
|||
|
|
|
As Alexander says, you can use HttpContext.Current.Request.Url but if you doesn't want to use the http://:
|
||
|
|
|
|
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. |
||
|
|
|
|
I've come up with this although I'm not sure if it's the best solution:
|
||
|
|
|
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. |
||
|
