RequestDispatcher dispatcher=request.getRequestDispatcher("/index.jsp");
if(username.equals(name)&&password.equals(pwd))
{
dispatcher.forward(request, response);
}
使用这种方式跳转,传值可以使用三种方法:url中带parameter,session,request.setAttribute
跳转后浏览器地址栏不会变化。
if(username.equals(name)&&password.equals(pwd))
{
//response.sendRedirect("index.jsp");
}
这种方式要传值出去的话,只能在url中带parameter或者放在session中,无法使用request.setAttribute来传递。
跳转后浏览器地址栏变化
(3)jsp通过form来跳转
例如: <form action="check.jsp">
if(username.equals(name)&&password.equals(pwd))
{
dispatcher.forward(request, response);
}
使用这种方式跳转,传值可以使用三种方法:url中带parameter,session,request.setAttribute
跳转后浏览器地址栏不会变化。
if(username.equals(name)&&password.equals(pwd))
{
//response.sendRedirect("index.jsp");
}
这种方式要传值出去的话,只能在url中带parameter或者放在session中,无法使用request.setAttribute来传递。
跳转后浏览器地址栏变化
(3)jsp通过form来跳转
例如: <form action="check.jsp">