I have a masterpage which is set via a HTTPModule on PreInit(). HAPPY TIME! Problem is I need to override the masterpagefile value on a few pages due to a layout issue. Anyone know the best way?
I tried adding a Page_Preinit on my page, but it is executed before the PreInit() in my module, so it ends up being reset there. I'm thinking maybe I should update a context variable in my page (something like masterSetAtPage which I might branch off of in my module).. any thoughts on that?
I'm working in VB.Net, but a C# example would be fine also.