shawntbanks
Programmer
Looking for a solution. I have this code.
<CFIF Len(Trim(FORM.picture1)) GT 0 and VAL(CGI.CONTENT_LENGTH) LT 20000><!--- --->
<CFFILE action="UPLOAD" nameconflict="makeunique" filefield="picture1" accept="image/*" destination="#webRootDirectory##pictureDirectory#">
<CFSET picture1filename = GetFileFromPath(CFFILE.serverfile)>
<cfx_imagecr3 load="C:\Inetpub\ save="C:\Inetpub\
<CFELSE> <cflocation url="step1.cfm?Note=One or more files were too large!">
<CFABORT>
</cfif>
When it returns to Step1.cfm, the page displays this at the top.
HTTP/1.1 200 OK Server: Microsoft-IIS/5.0 Date: Mon, 15 Dec 2003 15:22:01 GMT Connection: close Content-type: text/html Page-Completion-Status: Normal Page-Completion-Status: Normal
Any ideas on how to get rid of this
<CFIF Len(Trim(FORM.picture1)) GT 0 and VAL(CGI.CONTENT_LENGTH) LT 20000><!--- --->
<CFFILE action="UPLOAD" nameconflict="makeunique" filefield="picture1" accept="image/*" destination="#webRootDirectory##pictureDirectory#">
<CFSET picture1filename = GetFileFromPath(CFFILE.serverfile)>
<cfx_imagecr3 load="C:\Inetpub\ save="C:\Inetpub\
<CFELSE> <cflocation url="step1.cfm?Note=One or more files were too large!">
<CFABORT>
</cfif>
When it returns to Step1.cfm, the page displays this at the top.
HTTP/1.1 200 OK Server: Microsoft-IIS/5.0 Date: Mon, 15 Dec 2003 15:22:01 GMT Connection: close Content-type: text/html Page-Completion-Status: Normal Page-Completion-Status: Normal
Any ideas on how to get rid of this