問題:通過form表單跳轉到servlet中處理事物完後,需要再跳轉到另外一個jsp頁面。我是用了很多種方法:都是頁面找不到錯誤。使用過的方法:
1.response。sendRedirect("excelInport.jsp"); 2.request.getRequestDispatcher("excelInport.jsp").forward(request,response); 3.out.print("跳轉"); 4.out.print("window.location.href="excelInport.jsp"");
小弟嘗試了這些方法都是出現頁面找不到404,為什麼呢?
如果說404 那就說路徑問題檢查跳轉路徑,還可能是沒有重新發布。