How do you access individual items of an Master Page
Answers were Sorted based on User's Feedback
Answer / rakesh
Suppose we have a Label(lblTest) in the MasterPage(TestMaster.master) and you want to access that in the Content page at that time u can use the following Code.
Page_Load(....)
{
Label lbl = (Label)TestMaster.FindControl("lblTest");
lbl.Text ="Accessed in ContentPage..";
}
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / vijay singh
MultiView mv =
(MultiView)Master.FindControl("Multiviewsidebar");
| Is This Answer Correct ? | 6 Yes | 4 No |
Answer / kevin m
Best not to let the content page know about a control.
Expose what is needed by public properties on the master page, makes the solution far more flexible and decoupled.
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / m.ramasubbareddy
There are so many ways to access individual items of an
Master Page
you need to typecast what control you need to find
1.TextBox textbox=(TextBox)this.findcontrol("textbox1");
2.Label labl=(Label)page.parent.fincotrol("lblname") as Label;
3.ContentPlaceholder
cph=(ContentPlaceholder)this.findcontrol("ContentPlaceholder1"
);
Label lbl=(Label)cph.findcontrol("lblname");
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / prayag t
you can also have a public property defined in master pages
to be accessed in other child pages.
| Is This Answer Correct ? | 0 Yes | 1 No |
what is wwf in asp.net?
What is boxing?
8 Answers IBM, Misys, Siebel Systems,
What is ispostback method in asp.net?
What is role manager work in web.config? how to restrict perticular pages from the users using the role manager?
Features in ASP.NET ?
What is the answer for "Which configuration Tool your using means" ? we have to tell about IIS or .Net Framework or VSS? Give me in brief ?
Which method is used to force all the validation controls to run?
What is the difference between sealed vs static class?
What is cookies cache and session?
About Postback ?
IS IT POSSIBLE TO SET TIME FOR COOKIES?HOW IT IS POSSIBLE.
public key?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)