Re: break within a text area

2000-06-22 Thread Adam Cantrell
CTED] Sent: Thursday, June 22, 2000 9:03 AM Subject: RE: break within a text area Hi, does anybody know how to set a page break within a textarea tag? I think I have the syntax incorrect using Chr(13). There's no such thing as a page break in a TEXTAREA. If you want a line break, you can use

RE: break within a text area

2000-06-22 Thread Dave Watts
Excellent - thanks Dave. Do you know why it was to be set as a variable first? If I just type it within the textarea tag - it just gets displayed. Oh well - it works now. It doesn't have to be set as a variable first; I do that for convenience. If you're doing something like this: cfset

RE: break within a text area

2000-06-22 Thread Aidan Whitehall
Think it's Chr(10) Chr(13) -- Aidan Whitehall [EMAIL PROTECTED] Netshopper UK Ltd Advanced Web Solutions Services http://www.netshopperuk.com/ Telephone +44 (01744) 648650 Fax +44 (01744) 648651 -Original Message- From: Adam Cantrell [mailto:[EMAIL PROTECTED]] Sent: 22 June

RE: break within a text area

2000-06-22 Thread Dave Watts
Hi, does anybody know how to set a page break within a textarea tag? I think I have the syntax incorrect using Chr(13). There's no such thing as a page break in a TEXTAREA. If you want a line break, you can use a carriage return and line feed: CFSET CrLf = Chr(13) Chr(10) Dave Watts, CTO,

Re: break within a text area

2000-06-22 Thread Adam Cantrell
But I don't know the exact syntax, if I type Chr(10), Chr(10), or ##Chr(10) it just gets displayed. Anybody know? - Original Message - From: "Aidan Whitehall" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, June 22, 2000 8:50 AM Subject: RE: break within a text are