RE: Newbie-CF trying to process Hex numbers :-)

2001-05-31 Thread John Lucas
You can't have single # within a cfoutput statement. Eliminate the # or use a ## instead. John Lucas -Original Message- From: Gina K. Anderson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 30, 2001 2:20 PM To: CF-Talk Subject: Newbie-CF trying to process Hex numbers :-) Hi all

RE: Newbie-CF trying to process Hex numbers :-)

2001-05-31 Thread John Lucas
Sorry, I guess I should have been more clear #something# is ok. #FF is not ok. ##FF is ok FFF is ok -Original Message- From: Gina K. Anderson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 30, 2001 2:20 PM To: CF-Talk Subject: Newbie-CF trying to process Hex numbers

RE: Newbie-CF trying to process Hex numbers :-)

2001-05-31 Thread Craig Fisher
Fisher Alta Interactive, Inc. http://www.altainteractive.com/ [EMAIL PROTECTED] 801-791-8251 -Original Message- From: Gina K. Anderson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 30, 2001 1:20 PM To: CF-Talk Subject: Newbie-CF trying to process Hex numbers :-) Hi all, Have been

Re: Newbie-CF trying to process Hex numbers :-)

2001-05-31 Thread Bill Davidson
Message - From: Gina K. Anderson [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, May 30, 2001 3:19 PM Subject: Newbie-CF trying to process Hex numbers :-) Hi all, Have been learning CF, and going through the book ColdFusion 4.0 Web Application Construction Kit. Short

RE: Newbie-CF trying to process Hex numbers :-)

2001-05-31 Thread Sandy Clark
pound signs within a CFOUTPUT body bgcolor=##FF text=##00 -Original Message- From: Gina K. Anderson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 30, 2001 12:20 PM To: CF-Talk Subject: Newbie-CF trying to process Hex numbers :-) Hi all, Have been learning CF, and going through

Re: Newbie-CF trying to process Hex numbers :-)

2001-05-31 Thread Bill Davidson
[EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, May 30, 2001 3:19 PM Subject: Newbie-CF trying to process Hex numbers :-) Hi all, Have been learning CF, and going through the book ColdFusion 4.0 Web Application Construction Kit. Short story is I got bored with white background

Re: Newbie-CF trying to process Hex numbers :-)

2001-05-31 Thread Tony Schreiber
You need to escape pound signs by double-pounding them. If you hex codes are within CFOUTPUT or being process from a query, they need to look like this: ##FF ##99, etc... Have been learning CF, and going through the book ColdFusion 4.0 Web Application Construction Kit. Short story is

Re: Newbie-CF trying to process Hex numbers :-)

2001-05-31 Thread Howie Hamlin
- Original Message - From: Gina K. Anderson [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, May 30, 2001 3:19 PM Subject: Newbie-CF trying to process Hex numbers :-) Hi all, Have been learning CF, and going through the book ColdFusion 4.0 Web Application Construction Kit

RE: Newbie-CF trying to process Hex numbers :-)

2001-05-31 Thread Jerry Staple
trying to process Hex numbers :-) Hi all, Have been learning CF, and going through the book ColdFusion 4.0 Web Application Construction Kit. Short story is I got bored with white background and black text, and started doing my own app instead of the example in the book, using background colors, text

OT: RE: Newbie-CF trying to process Hex numbers :-)

2001-05-31 Thread Thomas Chiverton
You need to escape pound signs by double-pounding them. need to look like this: ##FF ##99, etc... '#' is a hash sign. '£' is a pound sign. :-) :the Brit. ~~ Structure your ColdFusion code with Fusebox. Get the official book at

RE: Thanks!! [Newbie-CF trying to process Hex numbers :-)]

2001-05-31 Thread Gina K. Anderson
Thanks to everyone for the fix on my hex numbers! Taking out the hash worked, as well as doubling up. Now I just have to decide which way to go with it and adopt it as my form. What's the standard? Thanks again! Gina ~~ Structure your ColdFusion

Re: Thanks!! [Newbie-CF trying to process Hex numbers :-)]

2001-05-31 Thread Bill Davidson
PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, May 31, 2001 11:12 AM Subject: RE: Thanks!! [Newbie-CF trying to process Hex numbers :-)] Thanks to everyone for the fix on my hex numbers! Taking out the hash worked, as well as doubling up. Now I just have to decide which way to go

RE: Thanks!! [Newbie-CF trying to process Hex numbers :-)]

2001-05-31 Thread Tony Schreiber
Thanks to everyone for the fix on my hex numbers! Taking out the hash worked, as well as doubling up. Now I just have to decide which way to go with it and adopt it as my form. What's the standard? For me, since the #FF values are valid HTML syntax versus FF, I prefer to double-pound,

RE: Thanks!! [Newbie-CF trying to process Hex numbers :-)]

2001-05-31 Thread Steve Martin
!! [Newbie-CF trying to process Hex numbers :-)] Thanks to everyone for the fix on my hex numbers! Taking out the hash worked, as well as doubling up. Now I just have to decide which way to go with it and adopt it as my form. What's the standard? Thanks again! Gina

Newbie-CF trying to process Hex numbers :-)

2001-05-30 Thread Gina K. Anderson
Hi all, Have been learning CF, and going through the book ColdFusion 4.0 Web Application Construction Kit. Short story is I got bored with white background and black text, and started doing my own app instead of the example in the book, using background colors, text colors, and CSS, etc. Okay,