Bob, You can use conditional logic in your FBX_Layouts.cfm file. Here's a simple example:
<cfif Month( Now() ) LT 9> <cfset Fusebox.layoutFile = "lay_Default.cfm"> <cfelse> <cfset Fusebox.layoutFile = "lay_Winter.cfm"> </cfif> If that's in a child circuit, you can set a variable (suppressLayout, for example) to TRUE and then in a top circuit, read it: <cfif suppressLayout> <cfset Fusebox.layoutFile = ""> <cfelse> <cfset Fusebox.layoutFile = "lay_Default.cfm"> </cfif> -----Original Message----- From: Bob Clingan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 19, 2002 8:00 AM To: Fusebox Subject: Layout Question How do I get a fuse to use a completely different layout and not be nested within the default layout? --Bob Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists ______________________________________________________________________ This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting. Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
