<cfif fileexists(evaluate(variables.incfilename))>
<cfinclude template="#variables.incfilename#">
<cfelse>
...
I think the issue is that you're testing to see if
"Evaluate(variables.incfilename)" exists, but then you're only
including "variables.incfilename". Try <cfinclude
template="#Evaluate(variables.incfilename)#" > Instead.
Or, better yet, find a way to get rid of the evaluate. (I haven't used
BD, but Evaluate is probably slow as it is in Macromedia CF)
Scott
--
-----------------------------------------
Scott Brady
http://www.scottbrady.net/
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

