jstl file upload form

How can I do a simple jstl upload form? I've found a lot of jsp examples, but none written using jstl.Files that I need to upload are image files.The file name will be stored in a mysql table, together with the user's name.
[246 byte] By [brandooa] at [2007-11-26 14:37:40]
# 1

JSTL has nothing to do with it, that's for generating HTML output. What you need in the HTML is simply an <input type="file"> element.

And what you need to process the file upload is preferably a servlet, as processing a file upload is a separate process from generating HTML. Forward to the JSP that generates the "Thank you for uploading" page when the upload is done.

DrClapa at 2007-7-8 8:18:41 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...