|
lu lu -> RE: iframe text overflowing (10/21/2006 13:18:03)
|
sry, can't give a url, this is the iframe: if not recordset.eof then myArray = recordset.getrows recordset.close:set recordset=nothing Conn.close: set Conn=nothing response.write("<html><head></head><body style='overflow-x:hidden; overflow-y: auto'><table><tr><td width='315'><font face='Courier'>") For lnRowCounter = 0 To Ubound(MyArray,2) Response.Write MyArray(lnColumnCounter, lnRowCounter) & "<hr />" Next response.write("</font></td></tr></table></body></html>") and the main page: <br/><iframe scrolling='yes' src='contribute.asp' width='360'>Sorry your browser does not support Iframes</iframe> now if i have a value in the db that is like vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv then the text flows over. The iframe only displays 35 characters per line. Any suggestions on how i can make the above string cut off at 35 and continue on the next line? THanks again
|
|
|
|