What is the best way to access an ASP.NET HiddenField control that is embedded in an ASP.NET PlaceHolder control through JavaScript? The Visible attribute is set to false i
Instead of making ".visible=false", change the style to "display: none;". That will render your control but make it invisible.