Say I've got that form holding some inputs:
<form action="demo_post_enctype.asp" method="post" >
First name: <input type="text" name="fname"><br>
Last name: <input type="text" name="lname"><br>
<input type="submit" value="Submit">
</form>
If I submit this form: which enctype does the browser use?
Is there a well-defined default type?
Or does every browser pick it's own enctype (out of the three allowed ones, of course)?