Wrox Home  
Search P2P Archive for: Go

  Return to Index  

asp_databases thread: Horizontal Scrollbar in ASP page


Message #1 by "george wu" <georgew@j...> on Fri, 9 Jun 2000 20:7:15
Hi, there;



    I have problem to put a horizontal scrollbar in my ASP page. So right 

now when I shrink my window size of my ASP page, the words are shifting 

between different lines. Do you know how to solve this problem? Your help 

would be greatly appreciated.



George



Message #2 by "Ken Schaefer" <ken.s@a...> on Sun, 11 Jun 2000 23:10:38 +1000
Nothing to do with ASP - everything to do with HTML.



Put your page into a table, and make the table width="1000" or something

similar:



<html>

<body>

<table width="1000">

<!-- everything else here -->

</table>

</body>

</html>



This will make your page 1000 pixels wide - however doing this is not

usually a good idea - it's usually a real pain in the behind to have to

scroll left to right to read every single line of text.



Cheers

Ken



----- Original Message -----

From: "george wu" 

To: "ASP Databases" <asp_databases@p...>

Sent: Friday, June 09, 2000 8:00 PM

Subject: [asp_databases] Horizontal Scrollbar in ASP page



> Hi, there;

>

>     I have problem to put a horizontal scrollbar in my ASP page. So right

> now when I shrink my window size of my ASP page, the words are shifting

> between different lines. Do you know how to solve this problem? Your help

> would be greatly appreciated.

>

> George





Message #3 by "Robert Larsson" <robert.l@m...> on Mon, 12 Jun 2000 10:26:14 -0700
Either use the nowrap option in a table or set the table to a fixed pixel

width instead of percentage.

(This is ofcourse if you use tables as I asume!)



<table width="500">                <-- fixed width in pixels

  <tr>

    <td nowrap>                        <-- nowrap

      any text.

    </td>

  </tr>

</table>



Mvh,

Robert Larsson!

Web-production Coordinator

---------------------------------------------------------------------

Mindflow AB | www.mindflow.se | 08-545 635 10





----- Original Message -----

From: "george wu" 

To: "ASP Databases" <asp_databases@p...>

Sent: Friday, June 09, 2000 8:00 PM

Subject: [asp_databases] Horizontal Scrollbar in ASP page





> Hi, there;

>

>     I have problem to put a horizontal scrollbar in my ASP page. So right

> now when I shrink my window size of my ASP page, the words are shifting

> between different lines. Do you know how to solve this problem? Your help

> would be greatly appreciated.

>

> George

>

>

  Return to Index