RE: Preserving Line Breaks in

2003-07-17 Thread Martin van Dijken
% String newline = "\r\n"; pageContext.setAttribute("newline", > newline); %> > > > > -Original Message- > From: Serge Knystautas [mailto:[EMAIL PROTECTED] > Sent: Wednesday, July 16, 2003 3:01 PM > To: Tag Libraries Users List > Subject: Re: Preserving Line

RE: Preserving Line Breaks in

2003-07-16 Thread Brian Dame
ssage- From: Serge Knystautas [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 16, 2003 3:01 PM To: Tag Libraries Users List Subject: Re: Preserving Line Breaks in Brian Dame wrote: > Does anyone have tips on preserving line breaks in ? > > For example, a user enters text into a

Re: Preserving Line Breaks in

2003-07-16 Thread James Smith
When I did this, I used option #1. I kind of extended a controller tag I had already built to do the work of replacing the "\n"s with ""s and so on. James Smith Application Systems Analyst, Treistman Center College of Fine Arts, University of Arizona - Original Message - From: "Brian Da

Re: Preserving Line Breaks in

2003-07-16 Thread Serge Knystautas
Brian Dame wrote: Does anyone have tips on preserving line breaks in ? For example, a user enters text into a textarea, which is stored in a database. When I retrieve the text from the database, I'd like to display it formatted exactly as the user entered it. I can only think of two options: 1) P