HTML/CSS/Form Attributes/enctype

Материал из Web эксперт
Перейти к: навигация, поиск

"enctype" sets the MIME encoding type

   <source lang="html4strict">
   

<HTML> <body onUnload="document.forms[0].reset()"> <form name="form1" method="post" action="" encoding="text/plain">

My Password: <input type="password" name="textfield" value="15151515"size="20"> <input type="button" name="Submit" value="Submit">

</form> </body> </BODY> </HTML>


     </source>