Thanks, Dre. I modified the custom tag to:
<!--- Output it as a hidden field --->
<CFOUTPUT>
<CFIF Find('"', Evaluate(#form_element_qualified#))
NEQ 0>
<INPUT TYPE="hidden" NAME="#form_element#"
VALUE="#URLEncodedFormat(Evaluate(form_element_qualified))#">
<CFELSE>
<INPUT TYPE="hidden" NAME="#form_element#"
VALUE="#Evaluate(form_element_qualified)#">
</CFIF>
</CFOUTPUT>
and then right before the insert do (I'm using
Fusebox):
<CFLOOP LIST="#StructKeyList(attributes)#" INDEX="ii">
<CFIF IsDefined("#ii#") AND Find('%22',
Evaluate(#ii#)) NEQ 0>
<CFSET SetVariable('attributes.' & #ii#,
#URLDecode(Evaluate(ii))#)>
</CFIF>
</CFLOOP>
and all appears well. Thanks!
Kamie
--- Andre Turrettini <[EMAIL PROTECTED]>
wrote:
> Just urlencodedformat them when you put them back in
> the form fields. You
> may need to modify your custom tag a bit. DRE
=====
Kamie Curfman, Web Developer, FGM Inc.
45245 Business Court, Suite 400
Dulles, VA 20166
http://www.fgm.com
__________________________________________________
Do You Yahoo!?
Yahoo! Finance - Get real-time stock quotes
http://finance.yahoo.com
______________________________________________________________________
Structure your ColdFusion code with Fusebox. Get the official book at
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists