What is the best approach to show and hide an asp panel which is containing other controls like textbox and label controls
Can you try
document.getElementById( 'Panel1ClientId' ).style.display = 'none'; // to hide
and
document.getElementById( 'Panel1ClientId' ).style.display = 'block'; // to show
?