Paragraph Display From Memo Field

illdill

Registered User.
Local time
Today, 00:35
Joined
May 9, 2008
Messages
37
I can't seem to figure out how to preserve the paragraphs when displaying values from a memo data field. When I pull up the record to edit it in my form, the paragraphs are there, but when it displays in the FP DRW they are gone, and the memo is one big paragraph. Any ideas?

Thanks

Example: http://cesaala.org
 
Possibly store a '\r\n' (carriage return and new line) in the data. Not sure how it will be rendered, but.
 
That doesn't work, it shows up in the text and if I use the   it disappears from the text after I submit it.
 
I finaly found the answer.

<%=Replace(FP_FieldVal(fp_rs,"myMemoFieldName" ),chr(10)," <br>" )%>

This code replaces the column value code at the end of the line for the particular result at issue. Where the original <%FP_Field( code starts to the end of the next webbot segment -->
 

Users who are viewing this thread

Back
Top Bottom