vote up 0 vote down star

Hola folks,

I'm trying to create a web application project that has generic ContentPlaceholders that can be layed out via configured external master pages but without any knowledge of the external master pages.

Has anyone setup a web application project that can be used by multiple solutions, where it does not have any dependencies to external projects but allows the consumers to set their own master page?

I started off setting each page MasterPageFile to "../MySite.master" so that the application could just be embedded within a subdirectory and use the parent master page (whatever it is, as long as it inherited from my MasterPageBase class) The problem is that the parent application can not be referenced since it is in another application.

Having each consumers master page file in my project is not feasible since they have their own set of libraries that they need to reference, so the solution file would become gigantic.

Can I use injection to do this? I'm kind of a newbie at DI/IoC, but can the consuming projects each create a new project with only their master (inherited from my MasterPageBase class, and implementing my IMasterPageBase interface) and then set their config file to use their assembly containing their master? Obviously they would need to reference my library that contains the base class & interface.

flag

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.