> Heres another stumper...
> <CFSET salreq = "#IIf(len(form.salaryreq), DE(form.salaryreq), DE("None
> Listed"))#">
>
> If there is a # sign in form.salaryreq, this blows up... How would I get
> around this?
> I've tried various combinations of quotes... I know why this
> blows up, but I
> dont know how to get around this? argh! :)
I know this is a late answer compared to the rest, but why are you DE()ing
form.salaryreq?
It should be;
<CFSET salreq = IIf(len(form.salaryreq), "form.salaryreq", DE("None
Listed"))>
The Quotes around the field tell IIF to only evaluate it if it's true, also,
you didn't need the # and " around the IIF
HTH
Philip Arnold
ASP Multimedia Limited
T: +44 (0)20 8680 1133
"Websites for the real world"
**********************************************************************
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.
**********************************************************************
------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/[email protected]/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.