张家港网站设计建设,上海人才网官网入口查询,手机如何创建网页链接,江门网用户输入用户名和密码#xff0c;如果用户名和密码分别是admin 和123#xff0c;就重定向到success.jsp页面#xff0c;否则重定向到登录页面。
index.jsp#xff1a; html
body
登录br
form actionnext.jsp methodpost如果用户名和密码分别是admin 和123就重定向到success.jsp页面否则重定向到登录页面。
index.jsp html
body
登录br
form actionnext.jsp methodpost
用户名input typetext nameusername br
密 码input typepassword namepassword br
input typesubmit value登录
/form
/body
/htmlnext.jsp:%
String usernamerequest.getParameter(username);
String passwordrequest.getParameter(password);
if(admin.equals(username)123.equals(password))
{response.sendRedirect(success.jsp);}else{response.sendRedirect(index.jsp);}%success.jsphtml bodyLogin success/body
/html运行index.jsp的结果输入用户名admin密码123后页面重定向到success.jsp 如果输入用户名和密码不对重定向回index.jsp页面。