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

  • Thread starter Thread starter Guest
  • Start date Start date
It's most likely just a DIV tag with a style="display:'none';" and an
onClick to change it.
 
untested...but....

<div id=myDiv1
onClick="myDiv2.style.display='block';myDiv1.style.display='none';">This is
the text....</div>
<div id=myDiv2 style="display:'none'>This is the, including hidden</div>

It's all clientside in this case though, so hit a javascript group up.

--
Curt Christianson
Owner/Lead Developer, DF-Software
www.Darkfalz.com
 
Back
Top