I can specify the page title for a page from the Metadata tab. But on certain pages I want to be able to override this from my Page_Load function.
Is this possible? If so, how?
No sooner that I ask I find the answer.
I can set the page title in an overriden OnPreRender function and it works.
protected override void OnPreRender(EventArgs e) { base.OnPreRender(e); Page.Title = "Test"; }
You can also set the metadata with macros from within the UI.
Please, sign in to be able to submit a new answer.