Forum Moderators: open
---------------
If a control doesn't have a current value when the form is submitted, user agents are not required to treat it as a successful control.
---------------
Also from my own experience, browsers do not submit empty fileds, i.e., unsuccessful control. But the application I am working with is doing the exact opposite(which is driving me nuts because I don't want my empty fields get submitted). And I am clueless right now. Anyone has any idea on how this could be possible? Here is the form:
<form name="ManageForm" method="post" action="/Manage.do;jsessionid=26CB107EF9925FB8EEDD4F1223FD89D9" enctype="multipart/form-data">
<input type="text" name="hInput" value="">
<input type="submit" value="submit" >
<input type="text" name="hOutput" value="">
</form>
Thanks in Advance!
But when I take a look in the request header, I can see all these empty fields being submitted. What's going on?
...if you see what I'm getting at?