You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Chris Lott (JIRA)" <ji...@apache.org> on 2010/05/13 16:10:43 UTC

[jira] Created: (FILEUPLOAD-182) Documentation: add simple HTML form example to fileupload user guide

Documentation: add simple HTML form example to fileupload user guide
--------------------------------------------------------------------

                 Key: FILEUPLOAD-182
                 URL: https://issues.apache.org/jira/browse/FILEUPLOAD-182
             Project: Commons FileUpload
          Issue Type: Improvement
    Affects Versions: 1.2
         Environment: No specific environment requirements.
            Reporter: Chris Lott
            Priority: Minor
             Fix For: 1.2


The FileUpload user guide at http://commons.apache.org/fileupload/using.html is very helpful.  I suggest extending it with a tiny example of a HTML form that will work suitably.  I left off the "enctype" attribute on my form so naturally nothing worked properly, the call (from the user guide) to ServletFileUpload.isMultipartContent(request) always returned false.   A web search gave me the answer; e.g., here in the Oracle/Sun forum http://72.5.124.102/thread.jspa?messageID=10697258

All that's needed is a tiny example like this:

<form action="upload_file.jsp" method="post" enctype="multipart/form-data" name="form1" id="form1">
Choose file: <input name="file" type="file" id="file"/>
<input type="submit" name="Submit" value="Submit files"/>
</form>

Thanks for listening.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.