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
 
Use an <IFrame></IFrame> Tag and display a second page in the frame.

IE:

<IFrame framespacing="0" border="0" frameborder="0" width="200" height="200"
src="MyPage.aspx"></IFrame>

B Comrie
http://www.codewidgets.com
 
You can use a control called MultiPage control from Internet Explorer
Web Controls library.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top