Click here to Skip to main content
15,894,405 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
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

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.
 
Share this answer
 
cp1 :
Button Button1 = (Button)Master.FindControl("Button1");
Button1.Enabled = true;

cp2 :
Button Button1 = (Button)Master.FindControl("Button1");
Button1.Enabled = false;
 
Share this answer
 

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900