Posted on: 9/8/2014 6:20:26 PM | Views : 385

I have a nested master page (Nested.master) with: 
<%: Page.Title %> ...displaying the title of the currently viewed content page. Then I have a section where I needed sidebar navigation so I then added a second nested masterpage and adding content pages to that master page as well. So this is called "LeftNavPage.master"
But now Page.Title is displaying the title of the content pages related to "LeftNavPage.master" and I guess that would be a pretty normal behaviour, BUT I wonder If I could have a title on the "LeftNavPage.master" and instead display that title inside parent "Nested.master". I tried it like this:
<%@ Master Language="C#" Title="Products" MasterPageFile="~/Nested.master" AutoEventWireup="true" CodeFile="LeftNavPage.master.cs" Inherits="LeftNavPage" %> < ...

Go to the complete details ...