
Originally Posted by
ddadmin
Hmmm I'm not sure I understand your question
I believe what djr33 is trying to describe is markup along the lines of:
HTML Code:
<form action="/path/to/resource?existing=values">
<div>
<input name="control-name" type="text" value="">
<!-- ... -->
<input type="submit" value="Send">
</div>
</form>
When submitted, he expects a request to a URL such as:
  http://www.example.com/path/to/resource?existing=values&control-name=data
However, the preset query string is being removed, creating a request for:
  http://www.example.com/path/to/resource?control-name=data
instead.
Whilst I agree that this is bad (though not wrong) behaviour - I think user agents should append the form data - it's common. Using hidden form controls is the most reliable approach.
Mike
Bookmarks