zoukankan      html  css  js  c++  java
  • jsp作业跳转错误页面

    实现用户登录,当用户输入用户或密码错误时,将页面重定向到错误提示页

    判断页:

    <%@ page language="java" contentType="text/html; charset=UTF-8"
        pageEncoding="UTF-8"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Insert title here</title>
    </head>
    <body>
     <%
    String name=request.getParameter("name");
    
    String password=request.getParameter("password");
    
    %>
        
    <% 
    if(name.equals("test")&&password.equals("56789"))
    {
    
        out.print("账号密码正确");
    
        
    }else{
    
    response.sendRedirect("homeworkerror.jsp");
        
      
    }
    %>
    
    
    </body>
    </html>

    用户输入页:

    <%@ page language="java" contentType="text/html; charset=UTF-8"
        pageEncoding="UTF-8"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Insert title here</title>
    </head>
    <body>
    <form action="homework0624-2.jsp" method="post">
    
    账号:<input type="text" name="name" >
    <br>
    密码:<input type="password" name="password" >
    <br>
    <input type="submit" value="提交">
    
    
    </form>
    </body>
    </html>

    错误页:

    <%@ page language="java" contentType="text/html; charset=UTF-8"
        pageEncoding="UTF-8"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>错误页面</title>
    </head>
    <body>
    您的输入有误,请重新输入...

    <%
    response.setHeader("refresh", "10;URL=homework0624.jsp");
    %>

    </body>
    </html>

    运行结果:

    正确登录:

    错误登录:

  • 相关阅读:
    【BZOJ3670】【NOI2014】动物园(KMP算法)
    【BZOJ4372】烁烁的游戏(动态点分治)
    【BZOJ3730】震波(动态点分治)
    【BZOJ3924】幻想乡战略游戏(动态点分治)
    【BZOJ1095】捉迷藏(动态点分治)
    动态点分治
    【BZOJ2333】棘手的操作(左偏树,STL)
    【BZOJ4816】数字表格(莫比乌斯反演)
    【BZOJ3506】排序机械臂(Splay)
    【BZOJ2693】jzptab(莫比乌斯反演)
  • 原文地址:https://www.cnblogs.com/miss123/p/5614709.html
Copyright © 2011-2022 走看看