jsp第六周作业
<div> <h3>用户注册</h3> <a href="#">帮助</a> </div> <h2>注册账号</h2> <form action="user.jsp" method="post"> <table> <tr> <td>用户名 :</td> <td><input type="text"name="name">只能输入字母或数字,4-16个字符</td> </tr> <tr> <td height="12">密码:</td> <td height="12"><input type="password" name="password">密码长度6-12位</td> </tr> <tr> <td height="12">确认密码:</td> <td height="12"><input type="password" name="password1">请确认密码</td> </tr> <tr> <td>性别:</td> <td> <input type="radio" name="sex" value="男" checked="ok"/>男 <input type="radio" name="sex" value="女"/>女 </td> </tr> <tr> <td>电子邮箱地址:</td> <td><input type="text" name="email"/>请输入正确的邮箱地址 </td> </tr> <tr> <td>出生日期:</td> <td> <select name="year"> <option id="2001">2001</option> <option id="2002">2002</option> <option id="2003">2003</option> <option id="2004">2004</option> </select>年 <select name="month"> <option id="1">1</option> <option id="2">2</option> <option id="3">3</option> <option id="4">4</option> </select>月 <select name="day"> <option id="item1">1</option> <option id="item2">2</option> <option id="item3">3</option> <option id="item4">4</option> </select>日 </td> </tr> <tr><td><input type="submit" value="同意以下条款并提交"/></td></tr> </table> <textarea>同意</textarea> </form>
<body> <% request.setCharacterEncoding("utf-8"); String name= request.getParameter("name"); String password = request.getParameter("password"); String password1 = request.getParameter("password1"); String sex = request.getParameter("sex"); String email = request.getParameter("email"); String year = request.getParameter("year"); String month = request.getParameter("month"); String day = request.getParameter("day"); if (password.equals(password1)) { out.print("注册成功" + "<br>"); out.print("用户名是 :" + name + "<br>" + "密码是 :" + password + "<br>" + "性别 :" + sex + "<br>" + "电子邮件 :" + email + "<br>" + "出生日期 :" + year+"年"+month+"月"+day+"日" + "<br>"); } else { out.print("两次密码不一样!!"); }%> </body>
<%@ page contentType="text/html;charset=UTF-8" language="java" %> <html> <head> <title>Title</title> </head> <body> <form action="domarch.jsp" method="post"> <p>求平均值</p> 姓名:<input type="text" name="name"/><br> 性别:<input type="radio" name="sex" value="男"/>男 <input type="radio" name="sex" value="女"/>女<br> 班级:<select name="grade"> <option>101班</option> <option>102班</option> </select><br> 语文: <input type="text" name="chinese"/><br> 数学: <input type="text" name="math"/><br> 英语: <input type="text" name="english"/><br> <input type="submit" name="提交"> <input type="reset" name="重置"> </form> </body> </html> <%@ page contentType="text/html;charset=UTF-8" language="java" %> <html> <head> <title>Title</title> </head> <body> <% String uname=request.getParameter("uname"); String password1=request.getParameter("pas1"); String password2=request.getParameter("pas2"); String sex=request.getParameter("sex"); String em=request.getParameter("em"); String bir=request.getParameter("bir"); if(password1.equals(password2)){ out.print("注册成功"); out.print("用户名是:"+uname+"</br>"+"密码是:"+password1+"</br>" +"性别是:"+sex+"</br>"+"电子邮件是:"+em+"</br>"+"出生日期是:"+bir+"</br>"); } else{ out.print("两次密码不一样!"); } %> </body> </html>