Hidden parts of the page in ASP.NET???

Use javascript to toggle the visibility of div layers that you generate. ie..

<div id="Post100" style="DISPLAY:none">Contents</div>

then in your onClick the javascript would be

document.getElementById("Post100").style.display = "block";

or

document.getElementById("Post100").style.display = "none";
 
Back
Top