第五次作业

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
        
  </head>
  
  <body>
  <% double price=98.78; %>
  商品编号 A1001,价格8765
  <a href="bbb.jsp?id=A1001&price=8765">购买</a><br>
  商品编号 A1002,价格 <%=price %>
  <a href="bbb.jsp?id=A1002&price=<%=price %>">购买</a><br>
  </body>
</html>         
复制代码
复制代码
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
        
  </head>
  
  <body>
  <% 
  String id=request.getParameter("id"); 
  String price=request.getParameter("price"); %>
  商品编号:<%=id %><br>
  商品价格:<%=price %><br>
  </body>
</html>

 

 

复制代码

 

教材P97 实验2

复制代码
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
        
  </head>
  
  <body>
  <form action="ddd.jsp" >
  输入运算数,选择运算符号:<br>
 <input type="text" name="numberone">
  <select name="operator">
  <option selected="selected" value="+">+
  <option value="-">-
  <option value="*">*
  <option value="/">/
  </select>
  <input type="text" name="numbertwo"><br>
   <input type="submit" name="submit" value="提交"><br>
   
   </form>
  </body>
</html>
复制代码

 

复制代码
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
        
  </head>
  
  <body>
  <%
  String numberone=request.getParameter("numberone");
  String numbertwo=request.getParameter("numbertwo");
  String operator=request.getParameter("operator");
  if(numberone==null||numberone.length()==0){
  response.sendRedirect("ccc.jsp");
  return;
  }
  try{
  double a=Double.parseDouble(numberone);
   double b=Double.parseDouble(numbertwo);
   double r=0;
   if(operator.equals("+")){r=a+b;}
   else if(operator.equals("-")){r=a-b;}
   else if(operator.equals("*")){r=a*b;}
   else if(operator.equals("/")){r=a/b;}
   out.print(a+""+operator+""+b+"="+r);
  }
  catch(Exception e){
  out.print("请输入数字字符");
  }
   %>
  </body>
</html>
复制代码

 

 

 

 

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

复制代码
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
        
  </head>
  
  <body>
  <script type="text/javascript">
        function validate() {
            if (loginForm.account.value == "") {
                alert("账号不能为空!");
                return;
            } else if (loginForm.password.value == "") {
                alert("密码不能为空!");
                return;
            }
            loginForm.submit();
        }
    </script>
  <form action="hhh.jsp" >
  
  用  户  名: <input type="text" name="uname"><br>
  密  &nbsp&nbsp&nbsp&nbsp&nbsp     码:    <input type="password" name="upwd"><br>
  <input type="checkbox" name="check">注册会员
    <input type="checkbox" name="nocheck">跳过
 <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>
  <head>    
  </head> 
  <body>
  <%
  request.setCharacterEncoding("utf-8");
  String uname=request.getParameter("uname");
  String upwd=request.getParameter("upwd");
  String check=request.getParameter("check");
  String nocheck=request.getParameter("check");

  if(uname.equals(upwd)){
  out.println("登陆成功");
  if(check.equals("on"))out.print("欢迎您注册会员");
  else if(nocheck.equals("on"))out.print("欢迎使用");
     
  }
  else{
  out.println("登陆失败"); 
       }
   %>
 
 
  </body>
</html>
复制代码

 

 

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

 

复制代码
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>
  <head> <!-- seven08.jsp -->
  </head>
  <body>
  <form action="seven09.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>
  <head> <!-- seven09.jsp -->
  </head>
  <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>
复制代码

 

 

 

 

在页面1中输入账号和密码,进行登录,如果账号和密码相同,则认为成功登录到页面2,在页面2中显示一个文本框输人用户姓名,输人之后提交,在页面3中显示用户的账号和姓名

复制代码
<%@ 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.account.value == "") {
                alert("账号不能为空!");
                return;
            }
            if (loginForm.upwd.value == "") {
                alert("密码不能为空!");
                return;
            }
            loginForm.submit();
        }
    </script>

    <form name="loginForm" action="page02.jsp" method="post">
        账号:<input type="text" name="account"><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>
     <p>登录成功!</p>
    <%
        request.setCharacterEncoding("utf-8");
        String account = request.getParameter("account");
    %>
    <form action="page05.jsp" method="post">
        用户名:<input type="text" name="username"><br>
        <br> <input type="submit" name="submit" value="提交"> <input
            type="hidden" name="account" value="<%=account%>">
    </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 '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=#EEEEFF> 
 <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>
     <%
        request.setCharacterEncoding("utf-8");
        String uname = request.getParameter("uname");
        String upwd = request.getParameter("upwd");
        if (uname.equals(upwd))
            request.getRequestDispatcher("page02.jsp").forward(request,
                    response);
        else
            request.getRequestDispatcher("page03.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 'page05.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 account = request.getParameter("account");
             String uname = request.getParameter("username");
             out.print("账号:" + account + "<br>" + "<br>"+"用户名:" + uname);
    %>
  </body>
</html>
复制代码

 

posted @ 2022-04-17 19:02  徐涛%  阅读(10)  评论(0编辑  收藏  举报