If I create a website in ASP.NET, is it possible to programmatically set the page title to some predefined value with some additional information that needs to be referenced? For instance:
Home Page Title = Site Name Links Title = Site Name: Links Stuff Title = Site Name: Stuff
Basically, no matter what I called the main heading on the page I'm currently on, I want to back up the ": Name" at the end of the heading so that it remains consistent on the website. I thought about defining it as a ContentPlaceHolder and wrapping some logic around it, but it doesn't seem to work as I thought it would (AKA, not at all).
source share