Is it possible to nest CFML conditional tags?

Questions by norman   answers by norman

Showing Answers 1 - 9 of 9 Answers

lkiranmai

  • Feb 24th, 2007
 

yes, CFML  conditional and flo-control tags like <CFIF> ans <CFLOOP> can be nested. but deep nesting may impact performance.

  Was this answer useful?  Yes

piyush

  • Aug 18th, 2007
 


The example of nesting of cfml loop while grouping the emloyees through department..one cfoutput loop is nested inside the other...

  Was this answer useful?  Yes

pbaylis

  • Feb 26th, 2008
 

Yes, this is possible for example:

<cfif...>
   <cfif...>
      <cfif...>
      </cfif>
   </cfif>
</cfif>

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions