我試圖重新定向我的servlet到某個頁面後,只有在點擊JavaScript提醒消息但沒有顯示提醒消息後重定向到頁面。Servlet僅在點擊JavaScript提示消息後重定向
if(!rs.next()){
out.println("<script>confirm('Record Not Found!');</script>");
request.getRequestDispatcher("SearchDriver.jsp").forward(request, response);
}