Click here to Skip to main content
Sign Up to vote bad
good
See more: C#ASP.NET
I have a master page and a common save button named btnSave.
I have 2 content page say cp1, cp2. When i open cp1 then the save button is enable.
When i open cp2 the save button is disable..
 
How can i enable/disable a button on master page from content page?
Posted 31 Dec '10 - 21:49


2 solutions

cp1 :
Button Button1 = (Button)Master.FindControl("Button1");
Button1.Enabled = true;
 
cp2 :
Button Button1 = (Button)Master.FindControl("Button1");
Button1.Enabled = false;
  Permalink  
You can use Page.Master.FindControl to access any control in Master Page
 
for example to access button named "btnSave", You can Use
 
 (Page.Master.FindControl("btnSave") as Button).Enabled = false;
 
Thats it.
  Permalink  

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Your Filters
Interested
Ignored
     
0 OriginalGriff 216
1 Sergey Alexandrovich Kryukov 169
2 Tadit Dash 154
3 Richard MacCutchan 145
4 Santhosh G_ 125
0 Sergey Alexandrovich Kryukov 10,338
1 OriginalGriff 7,965
2 CPallini 4,201
3 Rohan Leuva 3,522
4 Maciej Los 3,159


Advertise | Privacy | Mobile
Web04 | 2.6.130523.1 | Last Updated 1 Jan 2011
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid