HTML CSS Reference/HTML Attributes Reference/enctype
"enctype" Example
<HTML>
<head><Title>Example For enctype</Title></head>
<body onUnload="document.forms[0].reset()">
<form name="form1" method="post" action="" encoding="text/plain">
<p>My Password:
<input type="password" name="textfield" value="15151515"size="20">
<input type="button" name="Submit" value="Submit">
</p>
</form>
</body>
</BODY>
</HTML>
enctype is applied to
+----------------+--------------------------------------------------------------+
| Applied_To |<form> |
+----------------+--------------------------------------------------------------+
"enctype" Syntax and Note
Note:
This attribute sets the MIME encoding type.
The default value is application/x-www-form-urlencoded.
Syntax:
<form enctype="value"> . . . </form>
HTML <FORM ENCTYPE = sType... >
Scripting FORM.encoding [ = sType ]