On Wed, 20 Oct 2004 10:40:26 -0700 (PDT), Joe Smith <[EMAIL PROTECTED]> wrote:
> 
> I want to know if file item (<input type="file">) is always being processed last 
> using commons upload?
> 

The items are processed in the order in which they appear in the
request, which is the same order in which they appear in the HTML form
that was submitted.

--
Martin Cooper


> For the following code, it always process form fields first. Is that always true? 
> That's my observations.
> 
> if (!item.isFormField())
> {
> //CALL SECOND ??
> //process file item
> }
> else
> {
> //CALL FIRST ??
> //process form fields
> }
> 
> Please advise. Thanks!!
> 
> 
> ---------------------------------
> Do you Yahoo!?
> vote.yahoo.com - Register online to vote today!
>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to