Les Mizzell wrote: > > <input name="MOD_DESC" type="text" value="#AOS_145OP.MOD_DESC#"> > > Suggestions?
Since all you are concerned about is the quotes... <cfset quote ='"'> <input name="MOD_DESC" type="text" value="#Replace(AOS_145OP.MOD_DESC,QUOTE,""","ALL")#"> Then, on submission, convert the " back to " <cfset form.MOD_DESC = Replace(form.MOD_DESC,""",QUOTE,"ALL")> - Rick ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Purchase from House of Fusion, a Macromedia Authorized Affiliate and support the CF community. http://www.houseoffusion.com/banners/view.cfm?bannerid=37 Message: http://www.houseoffusion.com/lists.cfm/link=i:4:182750 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

