Does a custom control (ascx) get rendered regardless of whether visibility property is true or false.
It seems that when some controls have their visibility set to false, they do not get rendered, yet when I set an ascx control to be hidden from the aspx page that contains it, the code still runs through the ascx's codebind, despite it being marked as not visible.
Is there a way to force my ascx not to render if visibility is marked false?
Is this behavior normal?