Can't change the Visible property of a control in ASP.NET Web Forms?
by johna | March 23, 2015 | ASP.NET Web Forms Web Development
If you come across a problem where you set the Visible property of an ASP.NET control to true in a code behind file, but even when you debug it still shows the value as being false then the problem is most likely to be that the control is inside another control such as a Panel or PlaceHolder that has its Visible property set to false.
It appears that the Visible property can be a little confusing. It has certainly tripped me up more than once.
When a value is set for this property it will be remembered. So if you set Visible to true or false for a control that is within another control that is set to not be visible, if you later set that container control to be visible the control within it will then be visible or not visible depending on what value you set.
However, when you get the value for the Visible property, you are actually getting the current visibility of the control, and if a container control is not visible then of course the control within will also not be visible, no matter whether you have set it to visible or not.
To avoid problems it is best not to use the Visible property for certain conditional logic. Please see the example below for what not to do and how to do it correctly.
Incorrect:
Correct:
It appears that the Visible property can be a little confusing. It has certainly tripped me up more than once.
When a value is set for this property it will be remembered. So if you set Visible to true or false for a control that is within another control that is set to not be visible, if you later set that container control to be visible the control within it will then be visible or not visible depending on what value you set.
However, when you get the value for the Visible property, you are actually getting the current visibility of the control, and if a container control is not visible then of course the control within will also not be visible, no matter whether you have set it to visible or not.
To avoid problems it is best not to use the Visible property for certain conditional logic. Please see the example below for what not to do and how to do it correctly.
Incorrect:
btnSubmit.Visible = someValue == 1;
If (btnSubmit.Visible)
{
//some code here
}
Correct:
btnSubmit.Visible = someValue == 1;
If (someValue == 1)
{
//some code here
}
Related Posts
Converting dBase IV programs to run in the browser
by johna | September 13, 2024
Some pointless entertainment trying to get some old dBase programs running in the browser.
How to set up a debugging using the Turnkey Linux LAMP stack and VS Code
by johna | December 19, 2023
The second part in my guide to setting up a website and database using the Turnkey Linux LAMP stack.
How to set up a website and database using the Turnkey Linux LAMP stack
by johna | November 18, 2023
If you need to host your own website for the purposes of web development, Turnkey Linux LAMP Stack is an easy to install all-in-one solution that you can set up on a spare computer or a VM (Virtual Machine).
Comments
There are no comments yet. Be the first to leave a comment!