Horje

How to add HTML <button> formenctype Attribute

A form with two submit buttons. The first submit button submits the form data with default character encoding, and the second submits the form data without character encoding.

Browser Support

The numbers in the table specify the first browser version that fully supports the attribute.

Syntax

<button type="submit" formenctype="value">

Attribute Values

Value Description
application/x-www-form-urlencoded Default. All characters will be encoded before sent
multipart/form-data  This value is necessary if the user will upload a file through the form
text/plain Sends data without any encoding at all. Not recommended
index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>

<h1>The button formenctype attribute</h1>

<form action="/action_page_binary.asp" method="post">
  <label for="fname">First name:</label>
  <input type="text" id="fname" name="fname" value="Ståle"><br><br>
  <button type="submit">Submit with character encoding</button>
  <button type="submit" formenctype="text/plain">Submit without character encoding</button>
</form>

</body>
</html>

Output should be:

How to add HTML <button> formenctype Attribute




Type:
html
Category:
Web Tutorial
Sub Category:
HTML Tag
Uploaded by:
Admin