Ken,
Can you provide details?  The following code works OK.  It's not because you're 
from Florida, is it? ;)
-David from NY and CA

<!--- Make a WDDX packet --->
<cfset myString = "abc'def">
<cfwddx action="CFML2WDDX" input="#myString#" output="myStringWDDX">

<!--- Pass the packet in a form --->
<form name="myForm" action="#CGI.SCRIPT_NAME#" method="post">
<input type="text" name="myText" value="#myStringWDDX#">
<input type="hidden" name="myHiddenFormField" value="#myStringWDDX#">
<p><input type="submit">
</form>

<!--- Display the packet on the action page --->
myText = #FORM.myText#<br>
myText = #HTMLEditFormat(FORM.myText)#<br>
myHiddenFormField = #FORM.myHiddenFormField#<br>
myHiddenFormField = #HTMLEditFormat(FORM.myHiddenFormField)#


On Friday, July 27, 2001 6:22 PM, Ken Beard [SMTP:[EMAIL PROTECTED]] wrote:
> i'm passing wddx data in form fields and it has some quotes in it, and it's
> messing up my form.  I've tried doubling the quotes, htmleditformat and
> urlencodedformat and still I can't get it to work correctly.   It keeps
> showing up on the page.  help pleeze?

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to