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 are the differences between clr & cts?
difference between Trace and Debug ?
9 Answers Accenture, Addlux, Microsoft,
Explain the difference between asp.net mvc and asp.net webforms
What is Web Services?How we can consume a Web Services in our application?Explain.
What is the mvc framework?
Explain login control and form authentication.
Describe the Server Control Events of ASP.NET?
0 Answers SwanSoft Technologies,
For a webapplication if i want to gice access controls like admin,users how can i give security like rolebased?
What are the Application_Start and Session_Start subroutines used for?
When cookie will expire?
How does asp.net work?
Rate yourself in .net and sql database?
1 Answers BrickRed, Infosys, Satyam, SP Software,
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)