| when a user enters a carraige return in the TEXTAREA, a simple vbCrLf (or carraige return) is entered. Carraige returns are skipped over when parsing HTML... If you want to force a linebreak in HTML, you must use the <BR> tag. Therefore, to maintain the line breaks entered by the user in the TEXTAREA, you must first replace all the carraige returns (vbCrLf) with <BR> tags. You can use the Replace function to do this!
|