Attribute for <FORM ...>
ENCTYPE = "multipart/form-data" | "application/x-www-form-urlencoded" | "text/plain"
<FORM ...>| Usage Recommendation |
|---|
In most cases you will not need to use this attribute at all. The default value (i.e. if you don't
use this attribute at all) is
"application/x-www-form-urlencoded",
which is sufficient for almost any kind of form data. The one exception is if you want to do
file uploads. In that case you should use
"multipart/form-data".
See file uploads for more
details.
Take a look at what is actually sent to the web server with each ENCTYPE |
ENCTYPECopyright 1997-2002 Idocs Inc.
