Today I came across a situation where I was trying to set an ASP.NET UserControl to be Control.Visible = true, and try as I might, the call was failing. Here's what I did in the immediate window in Visual Studio.
MyControl.Visible = true;MyControl.Visible; // output: false;I almost bashed my head against...