Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How do you access individual items of an Master Page

Answers were Sorted based on User's Feedback



How do you access individual items of an Master Page..

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

How do you access individual items of an Master Page..

Answer / vijay singh

MultiView mv =
(MultiView)Master.FindControl("Multiviewsidebar");

Is This Answer Correct ?    6 Yes 4 No

How do you access individual items of an Master Page..

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

How do you access individual items of an Master Page..

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

How do you access individual items of an Master Page..

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

Post New Answer

More ASP.NET Interview Questions

Difference between windows application and web application? Which is the best for updation purpose?

5 Answers   IBS,


how we Creating a Web Service

1 Answers   Mind Tree,


What are the advantages and disadvantages of session?

0 Answers  


What is serialization?

5 Answers   Piramal Healthcare,


can we store textbox and com components in viewstate?

4 Answers   Microsoft,


what is diference between the .net1.0 & .net2.0 ?

3 Answers   EMax,


What is personalization? What are the properties available in personalization?

1 Answers  


What for use web.sitemap in asp.net?

1 Answers  


There is a login page that has two text boxes with required field validators on it. The page has a login and cancel button. How can we ensure that the click on the cancel button doesnt fire a validation event.

2 Answers   Proteans,


How to retrieve the information from datatable citywise in c#?

2 Answers   HCL,


Name some asp objects?

0 Answers  


Contrast oop and soa. What are tenets of each16. How does the xmlserializer work? What acl permissions does a process using it require?

0 Answers  


Categories