cfinclude, how granular can you make it?

2002-09-19 Thread Gilbert Midonnet
How granular can you make your includes? I ask because I'm unable to breakup an if-else clause. If I pull out the cfif ... and put it into an include I get a Just in time compilation error. If I put the entire cfifcfelse/cfif into the include everything works fine. I'm not finding information on

RE: cfinclude, how granular can you make it?

2002-09-19 Thread Robert Everland
PROTECTED]] Sent: Thursday, September 19, 2002 11:15 AM To: CF-Talk Subject: cfinclude, how granular can you make it? How granular can you make your includes? I ask because I'm unable to breakup an if-else clause. If I pull out the cfif ... and put it into an include I get a Just in time

RE: cfinclude, how granular can you make it?

2002-09-19 Thread Mosh Teitelbaum
-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: Gilbert Midonnet [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 19, 2002 11:15 AM To: CF-Talk Subject: cfinclude, how granular can you make it? How granular can you make your includes? I ask

RE: cfinclude, how granular can you make it?

2002-09-19 Thread Margaret Fisk
: cfinclude, how granular can you make it? You can't break out cfif's into different pages and then include them, you have to have the cfif then else all in the same page. Robert Everland III Web Developer Extraordinaire Dixon Ticonderoga Company http://www.dixonusa.com -Original Message- From

Re: cfinclude, how granular can you make it?

2002-09-19 Thread Sam Farmer
: cfif variables.year EQ 2002 AND variables.month EQ 9 AND variables.ThisDay EQ 2 OR etc. HTH, Sam - Original Message - From: Gilbert Midonnet [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, September 19, 2002 11:15 AM Subject: cfinclude, how granular can you make

RE: cfinclude, how granular can you make it? -- further elaborati on

2002-09-19 Thread Gilbert Midonnet
I forgot to include (this is a continuation of what's written below) is that it one cannot use cfinclude in a cfif cfif cfinclude So, how granular can the includes be? // glm How granular can you make your includes? I ask because I'm unable to breakup an if-else clause. If I

RE: cfinclude, how granular can you make it?

2002-09-19 Thread S . Isaac Dealey
WHAT I WOULD LIKE TO BE ABLE TO DO: cfinclude template=holiday.cfm td class=holiday#ThisDay#/td cfelse tda href=#ThisDay#/td cfif thx // gilbert midonnet You can't include a portion of any other tag, whether it's a cfif or something else... so you couldn't have this

RE: cfinclude, how granular can you make it? -- further elaborati on

2002-09-19 Thread S . Isaac Dealey
I forgot to include (this is a continuation of what's written below) is that it one cannot use cfinclude in a cfif cfif cfinclude So, how granular can the includes be? // glm You can't include any cfml tag inside of any other cfml tag ... It would destroy the xml (or xml-like) format