Posted on: 2/18/2015 11:39:11 AM | Views : 585

Hi,
I have a nested MasterPage structure.
The master page contains the banner and the navigation menu. The inner WebForms contain the content pages. Each content page should have a bold title at the top, as well as some Buttons (or LinkButtons).
For now, I have placed an <asp:Label> and several <asp:LinkButton>s into the content documents. But I would like to move them out of the content documents into the master document.
However, when I do that, I need to access them from within the content documents, e. g. set the label's text in the master page from within the content document.
Furhermore, I need a different number of buttons in the content documents, e. g. :
document1.aspx: "Save", "Cancel" document2.aspx: "Update", "Reload", "New" If I need different numbers of Buttons, I cannot place them directly in ...

Go to the complete details ...