Forum Moderators: open
If not, how do I display a large amount of text without users having to scroll (they can scroll the page up and down, just not the box). Remember that it needs to suppost the "\n" character.
Any help is appreciated.
Your scripting language should be able to replace the '\n' with a <BR> eg. in VBScript sText=Replace(sText, chr(13), "<BR>") - or something close to that. Then you can use a DIV to display the text and it will set its height according to the length of the text.