<form name="myForm" method="POST" action="">
<input type="text" name='some"input"name' />
<input type="submit" name='a"submit"button' />
</form>
When you click Submit to submit the form, the quotation marks in the name property are encoded two times with their ASCII encoding.
In this example, in earlier versions of Internet Explorer, the text in the�name property of the input type element is converted to the following:
some%22input%22name
Note The %22 is the ASCII encoding for the quotation mark (").
However, in Internet Explorer 9, the percent sign (%) of the expected %22 ASCII encoding is�also converted to an ASCII encoding of %25. This results in the�name property incorrectly resembling the following:
some%2522input%2522name