Hello all.
There's quite weird issue and I wonder if it had ever occurred before. It looks odd that nobody had been caught by it, by Google says so.
that's what we have:
Master page
Masterpage.master
blahblagblag
User control whose page is bound to mentioned-above master page
According design, we need to define from .ascx user control
SomeControl.ascx
<asp:Content ContentPlaceHolderID="phMaster"> // this will not work, and issue is to make it work
But how to do it, considering that user controls cannot be bound to masterpage?
Any ideas?