FP: Discussion Web Message Won't Keep Formatting after PostingLast reviewed: October 14, 1997Article ID: Q169835 |
The information in this article applies to:
SYMPTOMSThe text that you type in a message box (text box) and post to a discussion Web page does not retain formatting such as carriage returns and multiple character spaces.
CAUSEThe text from the message box (text box) is converted to Hypertext Markup Language (HTML) format and the carriage returns and extra character spaces are discarded.
WORKAROUNDTo work around this behavior and retain scroll bars, line breaks, and carriage returns, enclose the text in a <TEXTAREA> tag. For example, change this code:
<%= Request.Form("describe") %>to this:
<FORM> <TEXTAREA ROWS="25" COLS="80"> <%= Request.Form("describe") %> </TEXTAREA> </FORM> |
Additional query words: 97
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |