It is not a stupid question. There are no <br> tags in the text (why don't you just display the text to see what you get?)
There are certainly no </br> tags because they are not legal - it's <br> or <br/> or <br /> - but anyway, they are not there. A text area *should* return CRLF (&h0d0a) but some browsers and/or *nix OSs will return just a LF so you have to strip out the CRs and convert LFs to <br>s (HTML) or <br/>s (XHTML) though in your case I think you can just replace \n's with the <br> Ian http://examples.roughian.com --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en -~----------~----~----~----~------~----~------~--~---
