I’m trying to dynamically turn off all buttons on a webpage for a practicular group of users. So what I want to do is just set visble and enable = false.
So i’m kind of looking for something like this below.
foreach(Button idvButton on Master)
{
idvButton.Visible = false;
idvButton.Enable = false;
}
Any help is appreciated! Thanks!
How about this from your child page’s code behind?