Scrollable area

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How can I display a (division or something) box with controls in it and it is
scrollable both horizontally and vertically in my Webform?
 
rkbnair said:
How can I display a (division or something) box with controls in it and it is
scrollable both horizontally and vertically in my Webform?


Put div tags around it with a fixed width and height and set the
overflow on 'auto'

Something like

<div style="width:400px; height:400px; overflow:auto;">

.... your controls go here ...

</div>


//Rutger
 
You can use a control called MultiPage control from Internet Explorer
Web Controls library.
 
Back
Top