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>
  • 相关阅读:
    Docker和k8s的区别与介绍
    NFS网络文件系统详解
    NFS文件系统及搭建NFS共享服务
    Tomcat 端口配置,及原理详解
    svn使用教程
    buff/cache内存占用过多
    关于xcode:如何在Objective-C中使用符号断点获取参数
    iOS开发消除编译警告
    建模的能力才是一个人和核心能力
    android sutdio 环境搭建
  • 原文地址:https://www.cnblogs.com/wanghaoning/p/14144692.html
Copyright © 2011-2022 走看看