JSP重定向到另一个页面而不是下一页

时间:2014-04-05 12:10:48

标签: java jsp

在数据库中插入值然后重定向到另一个jsp页面?但实际上没有在数据库中插入值,它重定向到下一个jsp页面     int i = ps.executeUpdate();

if(i!=0) {     
    session.setAttribute("userid", user);
    response.sendRedirect("admin.jsp");
    out.print("<font size='6',color='aqua'>Welcome Admin page</font>");
} else {
    response.sendRedirect("adminlogin.jsp");
}

1 个答案:

答案 0 :(得分:1)

int i=ps.executeUpdate("update tablename set col1='sss' where col2='hhh'");
      //i is 1 if any one row is updated that is if any one row matches the condition
        //i is 0 otherwise
        if(i==1)
        {
        response.sendRedirect("page1.jsp");
        }
        else
        {
        response.sendRedirect("page2.jsp");
        }