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.明天打算学习
    显示用户输入信息
     
  • 相关阅读:
    Android——Activity去除标题栏和状态栏
    Android——程序员的情怀——优化BaseAdapter
    Android——Android Sutido:[2]导入eclipse项目篇
    【Android开源项目分析】自定义圆形头像CircleImageView的使用和源码分析
    学佛略要
    Keystone, Start, Failed to Load Bson
    又梦见了你
    伦敦之旅
    无题
    Multiverse in Doctor Strange // Multiverse在《神秘博士》
  • 原文地址:https://www.cnblogs.com/wanghaoning/p/13493643.html
Copyright © 2011-2022 走看看