In my ASP.Net MasterPage I sometimes have controls that need to be accessed by most Pages. Now instead of using this to access the control
((Label)this.Page.Master.FindControl("lblBreadCrumb")).Text = "foo";
I tend to put a Property in the MasterPage with a reference to the Control, set the @MasterType directive in the Page and access the control like this:
this.Master.BreadCrumb.Text = "foo";
I find this approach much easier to use, but I never actually saw someone do it like this so I wonder if there is any good reason against it that I am missing?