एचटीएमएल संदर्भ

वर्णमाला द्वारा HTML श्रेणी के अनुसार HTML एचटीएमएल ब्राउज़र समर्थन एचटीएमएल गुण HTML वैश्विक गुण एचटीएमएल घटनाक्रम एचटीएमएल रंग एचटीएमएल कैनवास एचटीएमएल ऑडियो/वीडियो एचटीएमएल कैरेक्टर सेट एचटीएमएल सिद्धांत एचटीएमएल यूआरएल एनकोड एचटीएमएल भाषा कोड एचटीएमएल देश कोड HTTP संदेश HTTP तरीके पीएक्स से ईएम कन्वर्टर कुंजीपटल अल्प मार्ग


HTML <form> enctype विशेषता

❮ एचटीएमएल <फॉर्म> टैग

उदाहरण

"मल्टीपार्ट/फॉर्म-डेटा" के रूप में एन्कोडेड फॉर्म-डेटा भेजें:

<form action="/action_page_binary.asp" method="post" enctype="multipart/form-data">
  <label for="fname">First name:</label>
  <input type="text" id="fname" name="fname"><br><br>
  <label for="lname">Last name:</label>
  <input type="text" id="lname" name="lname"><br><br>
  <input type="submit" value="Submit">
</form>

परिभाषा और उपयोग

विशेषता निर्दिष्ट करती है कि सर्वर पर सबमिट करते समय फॉर्म-डेटा को enctypeकैसे एन्कोड किया जाना चाहिए।

नोट: विशेषता का enctypeउपयोग केवल तभी किया जा सकता है जब method="post".


ब्राउज़र समर्थन

Attribute
enctype Yes Yes Yes Yes Yes

वाक्य - विन्यास

<form enctype="value">

गुण मान

Value Description
application/x-www-form-urlencoded Default. All characters are encoded before sent (spaces are converted to "+" symbols, and special characters are converted to ASCII HEX values)
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

❮ एचटीएमएल <फॉर्म> टैग