Master Page - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T03:36:21Z http://stackoverflow.com/feeds/question/914201 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/914201/master-page 1 Master Page Wafaa 2009-05-27T06:08:24Z 2009-05-27T07:07:41Z <p>I need to ask if I have master page that contain button as an example then I add new webform(default) and I assign that master page as default form master page.the question is can I change the text of the button in default page code?</p> http://stackoverflow.com/questions/914201/master-page/914216#914216 1 Answer by Joshua Belden for Master Page Joshua Belden 2009-05-27T06:13:44Z 2009-05-27T06:13:44Z <p>I would use a property on the master page to change the button, I think you can make it public but meh.</p> <pre><code>public String ButtonText { get { return button1.text; } set { button1.Text = value } } </code></pre> <p>Then on the default page, set the master type.</p> <pre><code>&lt;%@ MasterType VirtualPath="~/mymaster.master" %&gt; </code></pre> <p>Then on the default page you should be able to access by going through the property.</p> <pre><code>Master.ButtonText = "Hello, Master Page Button"; </code></pre> <p>[Sorry, assuming C#]</p> http://stackoverflow.com/questions/914201/master-page/914218#914218 0 Answer by BengtBe for Master Page BengtBe 2009-05-27T06:14:08Z 2009-05-27T06:14:08Z <p>If you put the MasterType directive on your default page</p> <pre><code>&lt;%@ MasterType VirtualPath="~/Master1.master" %&gt; </code></pre> <p>then you can call methods and properties on the master page in the code-behind:</p> <pre><code>MyButton.Text = "New text"; </code></pre> <p>For more information see <a href="http://www.odetocode.com/articles/450.aspx" rel="nofollow">ASP.Net 2.0 - Master Pages: Tips, Tricks, and Traps </a></p> http://stackoverflow.com/questions/914201/master-page/914220#914220 2 Answer by balexandre for Master Page balexandre 2009-05-27T06:14:22Z 2009-05-27T07:07:41Z <p>sure you can, it's either way...</p> <p>you should see the video screencasts about MAster Pages, you will see how to accomplish that and much more!</p> <blockquote> <p>Video # 12 <a href="http://www.asp.net/learn/videos/video-7024.aspx" rel="nofollow">MasterPages</a> 16 minutes, 2 seconds</p> <p>Video # 36 <a href="http://www.asp.net/learn/videos/video-265.aspx" rel="nofollow">How Do I: Work with Master Pages Declaratively and Programmatically</a> 29 minutes, 49 seconds</p> <p>Video # 37 <a href="http://www.asp.net/learn/videos/video-266.aspx" rel="nofollow">How Do I: Handle Events in Master and Content Pages</a> 23 minutes, 26 seconds</p> </blockquote>