Iv been trying to do this for 2 hours, and google didnt help either. What im trying to do is, set the master page title to "My web page", and then from the child pages i want to append to this title.

I tried in the child page:

this.Title = this.Title + "- About Us";

But all this did was set the title to "- About us" and "My web page" was lost. Anyone please know how i can do this?

Thanks

link|improve this question

73% accept rate
Where's the + between this.Title and the string? – leppie Oct 31 '11 at 7:59
Which event are you running this code in? Page_Load, Page_Init etc? – Curt Oct 31 '11 at 9:13
im using page_load – TheGateKeeper Oct 31 '11 at 9:34
feedback

1 Answer

up vote 0 down vote accepted

Maybe try something like Master.Page.Title instead of this.Title

link|improve this answer
still doesnt work for me – TheGateKeeper Oct 31 '11 at 9:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.