Hello,
I have set the title of my masterpage to my website name, but the titles of
all the other pages did not change.
How do I change them all together?
Thanks!
:wave:
Printable View
Hello,
I have set the title of my masterpage to my website name, but the titles of
all the other pages did not change.
How do I change them all together?
Thanks!
:wave:
When you add a new page, the default title attribute is added to the @Page directive (title="Untitled Page").
Delete it as it overrides the Title you may have set in the MasterPage (Head section).
You could also set the Title in one of the MasterPage events in the code behind page.
Code:Protected Sub Page_Init(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Init
Page.Header.Title = "This title overrides titles set in aspx files."
End Sub