第七周Jsp作业
1.教材P78-79 例4-9
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> </head> <body bgcolor=#ffccff> <% double price =98.78; %> <p style="font-family: 宋体;font-size:36;color:blue"> 商品编号A1001,价格8765 <a href="4-9-receive.jsp?id=A1001&price=8765">购买</a><br> 商品编号A1002,价格<%=price %> <a href="4-9-receive.jsp?id=A1002&price=<%=price %>">购买</a> </p> </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 bgcolor=#EEEEFF> <p style="font-family: 宋体;font-size:36;color:blue"> <% String id=request.getParameter("id"); String price=request.getParameter("price"); %> 商品编号:<%=id %><br> 商品价格:<%=price %> </p> </body> </html>
2.教材P97 实验2
<%@ 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> </head> <body bgcolor=#ffccff> <form action="computer.jsp" method=post name=form> <p style="font-family: 宋体;font-size: 18;color: blue"/> 输入运算数,选择运算符号:<br> <input type=text name="one" size=6/> <select name="operator"> <option selected="selected" value="+">加 <option value="-">减 <option value="*">乘 <option value="/">除 </select> <input type=text name="two" size=6/> <br><input type="submit" name="submit" value="提交"/> </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 > <html> <head> </head> <body bgcolor=cyan> <p style="font-family: 宋体;font-size: 18;color:black"> <% String one=request.getParameter("one"); String two=request.getParameter("two"); String operator=request.getParameter("operator"); if(one==null||one.length()==0){ response.sendRedirect("index.jsp"); return; }else if(two==null||two.length()==0){ response.sendRedirect("index.jsp"); return; }try{ double a=Double.parseDouble(one); double b=Double.parseDouble(two); 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.println("请输入数字字符"); } %> </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> <script type="text/javascript"> function login(){ if(dologin.admin.value==""){ alert("请输入账号"); return; } else if(dologin.pass.value==""){ alert("请输入密码"); return; } dologin.submit(); } </script> <form action="curry.jsp" name ="dologin"> <p style="font-family: 宋体;font-size: 18; color:blue"> 账号: <input type="text" name="admin" size=6/> 密码: <input type="password" name="pass" size=6/> <br><input type="button" value="登录" onclick="login()"/> </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> </head> <body> <% String admin=request.getParameter("admin"); String pass=request.getParameter("pass"); if(admin.equals(pass)){ request.getRequestDispatcher("ok.jsp").forward(request, response); } else{ response.sendRedirect("no.jsp"); } %> </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> </head> <body> 登录成功!!!!!!! </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> </head> <body> 登录失败!!!!!!! </body> </html>
4.在上题的表单中增加一个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 login(){ if(dologin.admin.value==""){ alert("请输入账号"); return; } else if(dologin.pass.value==""){ alert("请输入密码"); return; } dologin.submit(); } </script> <form action="curry.jsp" name ="dologin"> <p style="font-family: 宋体;font-size: 18; color:blue"> 账号: <input type="text" name="admin" size=6/> 密码: <input type="password" name="pass" size=6/> 是否注册会员: <input type="checkbox" name="yes" value="1"/>注册 <input type="checkbox" name="yes" value="2"/>不注册 <br><input type="button" value="登录" onclick="login()"/> </form> </body> </html>
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> </head> <body> <% String admin=request.getParameter("admin"); String pass=request.getParameter("pass"); if(admin.equals(pass)){ request.getRequestDispatcher("ok.jsp").forward(request, response); } else{ response.sendRedirect("on.jsp"); } %> </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> <body> <h1>登录成功!!!!!!!</h1> <% String []yes=request.getParameterValues("yes"); for(int i=0;i<yes.length;i++){ if(yes[i].equals("1")){ 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> </head> <body> 登录失败!!!!!!! </body> </html>
5.在页面1的表单内输人一个数字N,提交,能够在另一个页面打印N个“欢迎”字符串。
<%@ 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> </head> <body> <form action="curry.jsp" name ="dologin"> <p style="font-family: 宋体;font-size: 18; color:blue"> 请输入数字 <input type="text" name="sum" size=6/> <br><input type="submit" value="提交"/> </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> </head> <body> <% String sum=request.getParameter("sum"); int s=Integer.parseInt(sum); for(int i=0;i<s;i++){ out.print("欢迎"+"</br>"); } %> </body> </html>
6.在页面1中输入账号和密码,进行登录,如果账号和密码相同,则认为成功登录到页面2,在页面2中显示一个文本框输人用户姓名,输人之后提交,在页面3中显示用户的账号和姓名。(转发)request.getRequestDispacher.....forward
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <% request.setCharacterEncoding("UTF-8"); response.setCharacterEncoding("UTF-8"); %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> </head> <body> <script type="text/javascript"> function login(){ if(dologin.admin.value==""){ alert("请输入账号"); return; } else if(dologin.pass.value==""){ alert("请输入密码"); return; } dologin.submit(); } </script> <form action="curry.jsp" name ="dologin"> <p style="font-family: 宋体;font-size: 18; color:blue"> 账号: <input type="text" name="admin" size=6/> 密码: <input type="password" name="pass" size=6/> <br><input type="button" value="登录" onclick="login()"/> </form> </body> </html>
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> <% request.setCharacterEncoding("UTF-8"); response.setCharacterEncoding("UTF-8"); %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> </head> <body> <% String admin=request.getParameter("admin"); String pass=request.getParameter("pass"); if(admin.equals(pass)){ request.getRequestDispatcher("ok.jsp").forward(request, response); } else{ response.sendRedirect("on.jsp"); } %> </body> </html>
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> <% request.setCharacterEncoding("UTF-8"); response.setCharacterEncoding("UTF-8"); %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> </head> <body> <% String admin=request.getParameter("admin"); String uname=request.getParameter("uname"); out.print("账号:"+admin+"</br>"+"用户名称"+uname); %> </body> </html>
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <% request.setCharacterEncoding("UTF-8"); response.setCharacterEncoding("UTF-8"); %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <body> <h1>登录成功!!!!!!!</h1> <% String admin=request.getParameter("admin"); %> <form action="person.jsp"> 用户名:<input type="text" name="uname" /> <input type="submit" value="提交"/> <input name="admin" type="hidden" value="<%=admin %>"> </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> </head> <body> 登录失败!!!!!!! </body> </html>