Hi all,
I have a very specific requirement and I try to solve this, but I currently don't see a proper and clean solution.
I have a web application (in ASP.NET 2.0). This web application is some kind of template for other "clones" of this site. For each clone there are different styles, html pages, etc.. You can specify the Clone name externally (for example web.config) and according to this the correct files are used.
We are currently facing up this problem : client requires functionality, which needs to be handled in the Server Code (C#). We don't want to go into if...else...statements in the template.
Ideally it would work the way, that we externally specify the Clone name (in web.config), it will dynamically load the assembly, with special code for this clone. In the special code will be defined just differences to the current handler (codebehind file), there won't be copied the whole funcionality.
The requir ...
Go to the complete details ...