Archive for September, 2006

How to Append Master Page title to Content Page title in ASP.NET 2.0

Usually asp.net render the content page title first, but you can append the page title in Page_Load event.

Simply put the following code in your master page’s Page_load event

Page.Header.Title &= “Whatever Constant String you want”

Related posts