POST method getting converted to GET in IE-9
- by Sri127
I have this line of code in my JSP. (I'm using struts 1.3)
<html:form action="screening/mine.do" method="post">
.
.
.
</html:form
When the action corresponding to mine.do is invoked (using struts-config.xml), the page is getting submitted as GET instead of POST. All the request parameters including the required ones are getting lost due to this. This issue occcurs only in IE-9.
The response remains as POST when I use other versions of IE or any other browsers. How do I make the response to remain as POST in IE-9 ?
EDIT : I observed one more issue in this. Whenever the page is rendered in a new window, this issue occurs. Other places, the POST works fine in IE-9.
Also, this issue occurs in Win7/IE-8, but works absolutely fine in XP/IE-8. Is there something to do with the OS as well???
Any solutions would be useful.
Thanks!!