> I was having some issues on IIF and thought I was using it
> correctly so I reverified it by looking at the examples in
> the book and if I copy an example directly out of the docs,
> it doesn't work. Try this in CFMX 6.1
> #IIf(IsDefined("Form.Deliver"), Evaluate(DE("Form.Deliver")),
> DE("no"))#
>
> That should output no and not throw an error, but on my box
> it does. Anyone know a workaround. The livedocs can be viewed
> here.
> http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/funct117.htm

I haven't actually tried running your code, but why would you nest DE within
Evaluate? You should be able to simplify the _expression_:

#IIf(IsDefined("Form.Deliver"), "Form.Deliver", DE("no"))>

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
phone: 202-797-5496
fax: 202-797-5444
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Reply via email to