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 pull out the <cfif ...> and put it into an include I
get a "Just in time compilation error." If I put the entire
<cfif><cfelse></cfif> into the include everything works fine.

I'm not finding information on "just in time complitation error" in either
google, or forta's book or the macromedia site.


WHAT EXISTS :  // if today is a holiday do this else do that


<cfif 
        ... snip ...
        #year# EQ "2002" AND #month# EQ "9" AND #ThisDay# EQ "2" OR
        ... snip ...
>

        <td class="holiday">#ThisDay#</td>

<cfelse>

        <td><a href="">#ThisDay#</td>

<cfif>




WHAT I WOULD LIKE TO BE ABLE TO DO:


<cfinclude template="holiday.cfm">

        <td class="holiday">#ThisDay#</td>

<cfelse>

        <td><a href="">#ThisDay#</td>

<cfif>



thx

// gilbert midonnet





______________________________________________________________________
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to