Posted on 09/02/2009 08:47:52
I don't have an example at hand, but we had something called CustomModulesHandler in Default.aspx which contained a switch case statement containing all custom modules on a solution.
CustomModulesHandler(string ModuleSystemName, DataRow ParagraphRow){
switch (ModuleSystemName){
Case "MyCustomSystemName":
CustomModules.MyCustomModule MyModule = new CustomModules.MyCustomModule();
return MyModule.GetModuleOutput(Dynamicweb.Frontend.Pageview.current(), ParagraphRow);
break;
}
}
There's gotta be someone out there with an example:)