zoukankan      html  css  js  c++  java
  • 每日日报7月29日

    1.今天学习了

    注册信息确认界面及其运行效果
    <%@ 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>
    2.没有遇到问题
    3.明天打算学习
    显示用户输入信息
     
  • 相关阅读:
    javascript提升复习
    关于加解密的
    java动态代理汇总
    ActiveMQ 使用
    16年上半年小结,下半年计划
    多线程之ReentrantReadWriteLock
    xml转换之
    2015-03 月份学习总结 分类: 学习总结 2015-04-01 20:25 87人阅读 评论(0) 收藏
    2015-03 月份学习总结 分类: 学习总结 2015-04-01 20:25 88人阅读 评论(0) 收藏
    IBM Rational AppScan 无法记录登录序列 分类: 数据安全 2015-03-18 16:46 157人阅读 评论(0) 收藏
  • 原文地址:https://www.cnblogs.com/wanghaoning/p/13493643.html
Copyright © 2011-2022 走看看