>(and your post added nothing to the discussion.. of course, neither does 
>this one)

Ok, let me add somethin to the discussion here then. 

As of CFMX7 we can name our own variable for cffile by using the "result" 
attribute. 

<cfif isDefined("Form.FileContents") >
   <!--- If TRUE, upload the file. --->
   <cffile action = "upload" 
      fileField = "FileContents" 
      destination = "#ExpandPath(".")#" 
      nameConflict = "MakeUnique"
      result="filename1">
          <cfoutput>#filename1.serverfile#</cfoutput>
<cfelse>
   <!--- If FALSE, show the Form. --->
   <form method="post" action=<cfoutput>#cgi.script_name#</cfoutput> 
      name="uploadForm" enctype="multipart/form-data">
      <input name="FileContents" type="file">
      <br>
      <input name="submit" type="submit" value="Upload File"> 
   </form>
</cfif>

:)  ???

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:216567
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

Reply via email to