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
I was having this problem as well. I can't edit the master file (too many possible side effects), so I used the pages PreRender() method, which fires after the master pages Page_Load()
protected void Page_PreRender(object sender, EventArgs e)
{
Page.Title = Page.Title + " - server error 500";
}