Master Page - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T03:36:21Zhttp://stackoverflow.com/feeds/question/914201http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/914201/master-page1Master PageWafaa2009-05-27T06:08:24Z2009-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#9142161Answer by Joshua Belden for Master PageJoshua Belden2009-05-27T06:13:44Z2009-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><%@ MasterType VirtualPath="~/mymaster.master" %>
</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#9142180Answer by BengtBe for Master PageBengtBe2009-05-27T06:14:08Z2009-05-27T06:14:08Z<p>If you put the MasterType directive on your default page</p>
<pre><code><%@ MasterType VirtualPath="~/Master1.master" %>
</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#9142202Answer by balexandre for Master Pagebalexandre2009-05-27T06:14:22Z2009-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>