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…