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 |
Explain which is best suited place in the Application Start and Session_Start subroutines with an example?
What is WebService ?
8 Answers Tanla Solutions, Yahoo,
How does session id work?
In a page u have Web user controls . So what is the order in which the Page life Cycles takes place?
What do you mean by authentication?
What is the differances between a abstract calss and interface
What is the current version of asp.net?
What is cross page posting? How is it done?
What is caching? What are different ways of caching in asp.net?
What is an iHTTPModule, and explain its implementation with its limitations?
Differentiate between structure and class.
Can we use multiple forms in single asp.net application?
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)