I use Tomcat6.0.14 and struts2,I have a jsp page,and there is a button in
it,when I click this button,it will call Javascript,and redirect another
page,my code is follows:
...
functioin test(){
  document.forms[0].action="a.do";
  document.forms[0].submit();
}
...
<s:form>
 <table>
     <td><a href="javascript:test()" >Test</a></td>
    </tr>
   </table>
</s:form>
...

When I run above page,it can redirect the page successly,but Tomcat6 say "
org.apache.tomcat.util.http.Parameters processParameters  Warn: Parameters:
Invalid chunk ignored.",why raise above warning information,why to correct
my code to get rid of this warning?

Reply via email to