Hi All,
I am a software engineer in a small firm.
I am using DNN community edition 5.6.
Also I am using a CrossArticle_Detail module in a page say Article_detail.aspx and this page has title Article Detail.
Now what happends is DNN by default set title of the page as 'Article Detail__(Article Title)'.
The (Article_Title) is title of the article which is currently being shown to you.
Then I trie below code to set page title dynamically.
DotNetNuke.Framework.CDefault p = (DotNetNuke.Framework.CDefault)this.Page;
p.Title = "myDynamicTitle";
After trying this code i got page title as
'myDynamicTitle__(Article Title)'
so my question is how can i set the page title dynamically of a page having CrossArticle_Detail module on it.