zoukankan      html  css  js  c++  java
  • 11.03Tuesday

    注册信息确认界面及其运行效果
    <%@ page contentType="text/html"%>
    <%@ page pageEncoding="gb2312"%>
    <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
    <fmt:requestEncoding value="gb2312"/>
    <html>
    <head>
    <title>注册信息确认</title>
    </head>
    <body>
    <h2 align="center">注册信息确认</h2>
    <table border="1" align="center">
    <tr>
    <td>用户 ID</td>
    <td>${param.userid}</td>
    </tr>
    <tr>
    <td>用户名</td>
    <td>${param.username}</td>
    </tr>
    <tr>
    <td>口令</td>
    <td>${param.userpass}</td>
    </tr>
    <tr>
    <td>Email</td>
    <td>${param.email}</td>
    </tr>
    <tr>
    <td>电话</td>
    <td>${param.phone}</td>
    </tr>
    <tr>
    <td>地址</td>
    <td>${param.address}</td>
    </tr>
    <tr>
    <td>生日</td>
    <td>${param.birthday}</td> 第 3 章 输 出
    53
     
    </tr>
    <tr>
    <td>地区</td>
    <td>${param.local}</td>
    </tr>
    <tr>
    <td>学历</td>
    <td>${param.degree}</td>
    </tr>
    <tr>
    <td>备注</td>
    <td>${param.comment}</td>
    </tr>
    <tr>
    <form name="form1" action="" method="post">
    <input type="hidden" name="userid" value="${param.userid}">
    <input type="hidden" name="username" value="${param.username}">
    <input type="hidden" name="userpass" value="${param.userpass}">
    <input type="hidden" name="local" value="${param.local}">
    <input type="hidden" name="phone" value="${param.phone}">
    <input type="hidden" name="email" value="${param.email}">
    <input type="hidden" name="address" value="${param.address}">
    <input type="hidden" name="comment" value="${param.comment}">
    <input type="hidden" name="birthday" value="${param.birthday}">
    <input type="hidden" name="degree" value="${param.degree}">
    <td><input type="button" name="action1" value="确定"
    onclick="this.form.action='success.jsp';this.form.submit();"></td>
    <td><input type="button" name="action1" value="修改"
    onclick="this.form.action='re_register.jsp';this.form.submit();"></td>
    </form>
    </tr>
    <table>
    </body>
    </html>
  • 相关阅读:
    Cheatsheet: 2011 09.07 ~ 09.12
    Cheatsheet: 2011 10.01 ~ 10.10
    Cheatsheet: 2011 10.11 ~ 10.17
    Cheatsheet: 2011 09.01 ~ 09.06
    Cheatsheet: 2011 09.20 ~ 09.25
    Cheatsheet: 2011 08.17 ~ 08.22
    Cheatsheet: 2011 09.13 ~ 09.19
    Cheatsheet: 2011 08.08 ~ 08.16
    Cheatsheet: 2011 09.26 ~ 09.30
    Java05文件与流——课堂测试1
  • 原文地址:https://www.cnblogs.com/wanghaoning/p/14144692.html
Copyright © 2011-2022 走看看