rangerbud249
Active member
- Joined
- Aug 18, 2004
- Messages
- 27
- Programming Experience
- Beginner
I have a function that returns a datatable. Then I retreive information from this datatable using the .Row(number).Item(number)
The data that I am retreiving I am putting it in a table like so:
<code>
Response.Write("<tr style='height:.25in'><td width=684 colspan=7 style='width:513.0pt;border:solid windowtext 1.0pt; border-top:none;padding:0in 5.4pt 0in 5.4pt;height:.25in'> <p class=MsoNormal><a name=Text2></a>" & CStr(ed.Rows(0).Item(5)).Replace(vbCrLf, "<BR>") & "</p> </td></tr>")
</code>
The problem im having is that if the data being retreived is too long then it makes my form grow horizontally instead of it going (Vertically) down to the next line when the first line is full.
can anyone help me?
Jose
The data that I am retreiving I am putting it in a table like so:
<code>
Response.Write("<tr style='height:.25in'><td width=684 colspan=7 style='width:513.0pt;border:solid windowtext 1.0pt; border-top:none;padding:0in 5.4pt 0in 5.4pt;height:.25in'> <p class=MsoNormal><a name=Text2></a>" & CStr(ed.Rows(0).Item(5)).Replace(vbCrLf, "<BR>") & "</p> </td></tr>")
</code>
The problem im having is that if the data being retreived is too long then it makes my form grow horizontally instead of it going (Vertically) down to the next line when the first line is full.
can anyone help me?
Jose