Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do I get Dynamic Text to wrap in a table

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
I am loading text from the database into a table but when I make the table fixed width the text doesnt wrap it just gets cut off. I need the text to wrap in the table cell. Its ok if the cell expands vertically but not horozontally.
 
Use a blank image to size the table :

<table>
<tr>
<td>
<img alt=&quot;&quot; src=&quot;images/spacer.gif&quot; height=&quot;1&quot; width=&quot;800&quot;>
</td>
</tr>
<tr>
<td>
<% =rs(&quot;databasetext&quot;) %>
</td>
</tr>
</table>

Regards

Big Dave
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top