Hi Everyone,
What i have is a record in a database, which when pulled looses all of its line break, and comes out as one long line . . . in the record, it maintains its line break etc.
Does anyone know how i replace line breaks with <BR> so when out pulled from database looks right . . .
. . . is it best to insert the <BR> before it goes into the database or when pulling it out?
Replace(varComments, chr(10), "<br />")
Mark
What i have is a record in a database, which when pulled looses all of its line break, and comes out as one long line . . . in the record, it maintains its line break etc.
Does anyone know how i replace line breaks with <BR> so when out pulled from database looks right . . .
. . . is it best to insert the <BR> before it goes into the database or when pulling it out?
Replace(varComments, chr(10), "<br />")
Mark