Hi,
I have to create a new ASP.NET 3.5 site (Not MVC!), and I am required to build a Plugin Architecture for the same.
I am thinking of using UserControls, but DLL of the UserControl must be placed in "bin" directory in order for it to work :(. I can't do that becauase I will have lots of Dlls and want to load the DLLs dynamically when needed for the UserControl.
Is there a way to achieve it ?
So my requirements :
- Core will load Plugin UserControls depending on configuration
- DLL should be loaded on demand rather then from bin directory
Please help!