cffile upload with macs and pc's

2001-06-22 Thread Tom Davison

Hello, I have an app that I am having users upload images and stuff via cffile upload 
and I want to be sure that there are no issues with the Mac.  I have read that there 
are lots of issues with the Macs uploading.  Is there anything that can be done for 
this?

Thanks,

Tom


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

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: cffile upload with macs and pc's

2001-06-22 Thread Massimo Foti

For similar needs I use a generic snippet:

!--- Left and Right trim form values ---
cfloop collection=#form# item=i
 cfset tmt_format_form=StructUpdate(form,i,Trim(form[i]))
/cfloop

Massimo


Larry C. Lyons [EMAIL PROTECTED] wrote in message
 Try encapsulating all your form variables with a trim, as in
 TRIM(form.formName) - when processing the forms. From what I understand
 IE for the mac tends to add spaces to the form values.




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

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists