hide/show feautre... How To....

  • Thread starter Thread starter Norman
  • Start date Start date
N

Norman

Hello All,
I have developed the ASP.Net application using .Net 1.1. I want to get one
section of the page under hide/show feauture. That means when the user
clicks on display I want to display all the controls and data in that
section. when the user cliks on hide I want to hide that section so that the
screen will be very short to navaigate vertically. All my users uses ie5.+.
Thnaks,
Norman
 
The easiest way would be to do a postback when they click the hide button,
then set MyPanel.Visible=False.
You could get fancier and more efficient by doing it with client side
script.
 
Back
Top