my master page takes Title from resource file based on lang. ver
<
title>
<asp:Literal ID="Literal1" runat="server" Text="<%$ Resources:Resources, mp_title %>"></asp:Literal>
</title>
Works perfect on all pages, but now on "product details page" i want to change title to the name of the product.
in page load :
page.title = "New Page title"
doesn't work. When i change title in master page to some static text , everything works