JSP第七周作业

1.教材P78-79 例4-9

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<!DOCTYPE HTML >
<html>
<head>
<title>My JSP 'index.jsp' starting page</title>
</head>
<body>
    <%
        double price = 98.78;
    %>
    <p style="font-family: 宋体;font-style: 36;color: blue">
        商品编号A1001,价格8765 <a href="index1.jsp?id=A1001&price=8765">购买</a>
        商品编号A1002,价格<%=price%>
        <a href="index1.jsp?id=A1002&price=<%=price%>">购买</a>
    </p>
</body>
</html>
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<!DOCTYPE HTML >
<html>
<head>
<title>My JSP 'index.jsp' starting page</title>
</head>
<body>
    <p style="font-family: 宋体;font-style: 36;color: blue">
        <%
            String id = request.getParameter("id");
            String price = request.getParameter("price");
        %>
        <strong>商品编号:<%=id%><br> 商品价格:<%=price%> </strong>
    </p>

</body>
</html>

 

 

 

 

 

 

2.教材P97 实验2

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<!DOCTYPE HTML >
<html>
<head>
<title>My JSP 'index.jsp' starting page</title>
</head>
<body bgcolor="#12345">
    <form action="index1.jsp" method="post" name="form">
        <p style="font-family: 宋体;font-size: 18; color: blue">
            输入运算数,选择运算符:<br> <input type="text" name="num1" size=6 /> <select
                name="oper">
                <option selected="selected" value="+"><option value="-"><option value="*"><option value="/"></select>
            <input type="text" name="num2" size=6 />
             <input type="submit"  value="提交">
                </p>
    </form>



</body>
</html>
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<!DOCTYPE HTML >
<html>
<head>
<title>My JSP 'index.jsp' starting page</title>
</head>
<body bgcolor="cyan">
    <p style="font-family: 宋体; font-size: 18;color: black;">
        <%
            String num1 = request.getParameter("num1");
            String num2 = request.getParameter("num2");
            String oper = request.getParameter("oper");
            if (num1 == null || num1.length() == 0) {
                response.sendRedirect("index.jsp");
                return;
            } else if (num2 == null || num2.length() == 0) {
                response.sendRedirect("index.jsp");
                return;
            }
            try {
                double a = Double.parseDouble(num1);
                double b = Double.parseDouble(num2);
                double x = 0;
                if (oper.equals("+")) {
                    x = a + b;
                } else if (oper.equals("-")) {
                    x = a - b;
                } else if (oper.equals("*")) {
                    x = a * b;
                } else if (oper.equals("/")) {
                    x = a / b;
                }
                out.print(a+""+oper+""+b+"="+x);
            } catch (Exception e) {
                out.print("请输入数字字符");
            }
        %>


    </p>


</body>
</html>

 

 

 

3.制作一个登陆表单,输入账号和密码,如果账号密码相同,跳转到“登录成功”页面,否则跳转到“登录失败”页面。(加上JS非空验证)(选做,加验证码)

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    
    <title>My JSP 'index.jsp' starting page</title>
    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0">    
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="This is my page">
    <!--
    <link rel="stylesheet" type="text/css" href="styles.css">
    -->
  </head>
  
  <body>
    <script type="text/javascript">
        function validate() {
            if (loginForm.uname.value == "") {
                alert("账号不能为空!");
                return;
            }
            if (loginForm.upwd.value == "") {
                alert("密码不能为空!");
                return;
            }
            loginForm.submit();
        }
    </script>

    <form name="loginForm" action="dologin.jsp" method="post">
        用户名:<input type="text" name="uname"><br> 密码: <input
            type="password" name="upwd"> <br>
        <input type="button" value="登录" onClick="validate()">
    </form>
  </body>
</html>
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    
    <title>My JSP 'success.jsp' starting page</title>
    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0">    
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="This is my page">
    <!--
    <link rel="stylesheet" type="text/css" href="styles.css">
    -->
  </head>
  
  <body>
    <%
        request.setCharacterEncoding("utf-8");
        String uname = request.getParameter("uname");
        String upwd = request.getParameter("upwd");
        if (uname.equals(upwd))
            request.getRequestDispatcher("cheng.jsp").forward(request,
                    response);
        else
            request.getRequestDispatcher("fail.jsp").forward(request,
                    response);
    %>
  </body>
</html>
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    
    <title>My JSP 'deng.jsp' starting page</title>
    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0">    
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="This is my page">
    <!--
    <link rel="stylesheet" type="text/css" href="styles.css">
    -->
  </head>
  
  <body bgcolor=#ffccff>
     <p>登录成功!</p>
  </body>
</html>
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    
    <title>My JSP 'fail.jsp' starting page</title>
    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0">    
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="This is my page">
    <!--
    <link rel="stylesheet" type="text/css" href="styles.css">
    -->
  </head>
  
   <body bgcolor=#EEEEFF> 
 <p>登录失败!</p>
  </body>
</html>

 

 

 

 

 

 

 

 

 

 

 

 

4.在上题的表单中增加一个checkbox,让用户选择“是否注册为会员",如果注册为会员,则在显示时增加文本“欢迎您注册为会员”。

<%@ page language=
"java" import="java.util.*" pageEncoding="utf-8"%> <% String path = request.getContextPath(); String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() + path + "/"; %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <base href="<%=basePath%>"> <title>My JSP 'index.jsp' starting page</title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="This is my page"> <!-- <link rel="stylesheet" type="text/css" href="styles.css"> --> </head> <body> <script type="text/javascript"> function validate() { if (loginForm.uname.value == "") { alert("账号不能为空!"); return; } if (loginForm.upwd.value == "") { alert("密码不能为空!"); return; } loginForm.submit(); } </script> <form name="loginForm" action="page02.jsp" method="post"> 用户名:<input type="text" name="uname"><br> 密码: <input type="password" name="upwd"> <br> 是否注册为会员:<input type="checkbox" name="member" value="注册">注册 <input type="checkbox" name="member" value="不注册">不注册<br> <input type="button" value="登录" onClick="validate()"> </form> </body> </html>
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    
    <title>My JSP 'success.jsp' starting page</title>
    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0">    
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="This is my page">
    <!--
    <link rel="stylesheet" type="text/css" href="styles.css">
    -->
  </head>
  
  <body>
    <%
        request.setCharacterEncoding("utf-8");
        String uname = request.getParameter("uname");
        String upwd = request.getParameter("upwd");
        if (uname.equals(upwd))
            request.getRequestDispatcher("page03.jsp").forward(request,
                    response);
        else
            request.getRequestDispatcher("page04.jsp").forward(request,
                    response);
    %>
  </body>
</html>
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    
    <title>My JSP 'cheng.jsp' starting page</title>
    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0">    
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="This is my page">
    <!--
    <link rel="stylesheet" type="text/css" href="styles.css">
    -->
  </head>
  
  <body bgcolor=#ffccff>
         <p>登录成功!</p>
    <%
        request.setCharacterEncoding("utf-8");
        String[] member = request.getParameterValues("member");
        for (int i = 0; i < member.length; i++) {
            if (member[i].equals("注册")) {
                out.print("欢迎您注册为会员!");
            }
        }
    %>
  </body>
</html>
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    
    <title>My JSP 'fail.jsp' starting page</title>
    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0">    
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="This is my page">
    <!--
    <link rel="stylesheet" type="text/css" href="styles.css">
    -->
  </head>
  
   <body bgcolor=#EEEEFF> 
 <p>登录失败!</p>
  </body>
</html>

 

 

 

5.在页面1的表单内输人一个数字N,提交,能够在另一个页面打印N个“欢迎”字符串。

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <body>
      <form action="huanying.jsp" method="post" name="form">
      输入任意整数N:<input type="text" name="name" >
      <input type="submit" value="提交">
       
      </form>
  </body>
</html>
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <body>
   <%
   request.setCharacterEncoding("utf-8");
    String name=request.getParameter("name");
        int n=Integer.parseInt(name);
      for(int i=0;i<n;i++){
        out.print("欢迎"+"<br>");
   }
   
   %>
  </body>
</html>

 

 

 

 

 

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<!DOCTYPE HTML >
<html>
<head>
<title>My JSP 'index.jsp' starting page</title>
</head>
<body>
    <script>
        function yz() {
            if (form.zh.value == "") {
                alert("用户名不能为空!");
                form.zh.focus();
                return;
            }
            if (form.password.value == "") {
                alert('密码不能为空!');
                form.password.focus();
                return;
            }
            if(form.zh.value==form.password.value){
            form.submit();
            }else{
            alert('登陆失败');
            form.password.focus();
            return;
            }
        }
    </script>

    <form action="index1.jsp" method="post" name="form">
        <table>
            <tr>
                <td>账号</td>
                <td><input type="text" name="zh" />
                </td>
            </tr>
            <tr>
                <td>密码</td>
                <td><input type="password" name="password" />
                </td>
            </tr>
            <tr>
                <td><input type="button" value="登录" onclick="yz()" />
                </td>
            </tr>
        </table>
    </form>
</body>
</html>
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<!DOCTYPE HTML >
<html>
<head>
<title>My JSP 'index.jsp' starting page</title>
</head>
<body>
<%
String zh=request.getParameter("zh");
 %>

    <form action="index2.jsp" method="post">
        <input type="text" name="name" /> 
        <input type="submit" value="提交" />
        <input type="hidden" name="zh" value="<%=zh %>"/>
    </form>
    
</body>
</html>
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<!DOCTYPE HTML >
<html>
  <head>
    <title>My JSP 'index.jsp' starting page</title>
  </head>
  <body>
  <%
  request.setCharacterEncoding("utf-8");
  String zh=request.getParameter("zh");
  String name=request.getParameter("name");
  out.print("用户姓名:"+name+"<br>"+"用户账号:"+zh);
  %>
  
  
  </body>
</html>

 

 

 

 

 

posted @ 2022-04-17 16:52  起个名真难a  阅读(16)  评论(0编辑  收藏  举报