Can't change the Visible property of a control in ASP.NET Web Forms?

johna by | 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:

btnSubmit.Visible = someValue == 1;
If (btnSubmit.Visible)
{
//some code here
}

Correct:

btnSubmit.Visible = someValue == 1;
If (someValue == 1)
{
//some code here
}

Related Posts

Web Development

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.

Website Hosting Web Development

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).

Web Development

Intermittent "Unable to read data from the transport connection: net_io_connectionclosed" errors

by johna | May 6, 2020
If you are having intermittent problems sending email in .NET using System.Net.Mail consider switching libraries.

Comments

There are no comments yet. Be the first to leave a comment!

Leave a Comment

About

...random postings about web development and programming, Internet, computers and electronics topics.

I recommend ASPnix for web hosting and Crazy Domains for domain registration.

Subscribe

Get the latest posts delivered to your inbox.