Plus
After your JSP page has been submitted, this page will change the Form's target before submitting to other JSPs, because the Target is specified as "AutoSubmit" when the hidden commit is submitted. So you want to re-specify it. Such as: Your page is also submitted to jsptest.jsp, then add the following sentence to the code when submitted. FORM1.TARGET = ""; (does not open new page submission) or form1.target = "_blank"; "Open a new page display when submitted) and then join the submission code: form1.action =" jsptest.jsp ";