I\'ve read through quite a bit of posts/articles on how to do this and I still am not getting the page title set from the content page. My pages render OK except I can\'t get th
You have to remember that the MasterPage is a child control of the Page, so the OnLoad
event fires after the Page's OnLoad
event.
In your scenario/example, the page would set the title, then the masterpage would set it again afterwards. Either set it later in the lifecycle or wrap some more logic around who sets it perhaps?
Scott Allen has a good article on this for Master Page's specifically, give it a quick read to get a feel for the lifecycle order.