Hi,
I'm writing an IHttpFilter which needs to be in a seperate project (these are all C# projects) to be used in a set of ASP.NET MVC Applications. In the IHttpFilter I have to determine a few things that are specified in the web.config file.
Is there a way of retrieving the current web.config file from an external assembly at runtime? There are three settings that I need to obtain (strings).
The other problem is that I need to reference a bunch of files (images) but I'm not sure whether to place it in the ASp.NET MVC Application or in the IHttpHandler project.