Click here to Skip to main content
15,923,164 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how to disable the submit button in abc.aspx page when check box of xyz page is checked.
Posted

C#
if(checkbox.checked)
       submit.Visible=false;
else
       submit.Visible=true;
 
Share this answer
 
You have to access the control from another page. Please check this link for help. If you face any problem then ask question.


http://stackoverflow.com/questions/3085316/access-control-on-other-page-in-asp-net[^]

Thanks.
 
Share this answer
 
Comments
Member 10578683 4-Mar-14 4:06am    
I have an image button in grid view of abc.aspx page and i have to make its visble property true or false when i will checked a checkbox present in xyz.aspx. how will i do.help

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