I want to show multiple error messages as separate lines within a text area. This will enable me to show any number of error messages without them filling the whole screen. I send the output messages to the display page via a URL argument which is a CF delimited list.<br>So the display page has to break the list into lines. This is easy:<br>#Replace(Attributes.ErrList, delimiter, CrLf, "ALL"
#<br>(The list has Attributes scope because this code is in a custom tag).<br>I've tried the following CF code:<br>(1)<br><cfoutput><br> <textarea rows=4, cols=80 readonly><br> #Replace(Attributes.ErrList, delimiter, CrLf, "ALL"
#<br> </textarea><br></cfoutput><br>(2)<br><textarea rows=4, cols=80 readonly><br> <cfoutput><br> #Replace(Attributes.ErrList, delimiter, CrLf, "ALL"
#<br> </cfoutput><br></textarea><br><br>In both cases the first line of the text area is indented while the rest are not, e.g.<br> Message 1<br>Message 2<br>Message 3<br>and I don't want any lines to be indented.<br><br>I've tried defining a style for the textarea with text-indent:0 (both inline and as a separate style block), but this does not cure the problem.<br><br>Can anyone help?