zoukankan      html  css  js  c++  java
  • 每日总结

    员工培训系统:

    职称设置界面1:

    复制代码
    <%@ page language="java" contentType="text/html; charset=UTF-8"
        pageEncoding="UTF-8"%>
    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="UTF-8">
    <title>Insert title here</title>
    </head>
    <body>
    <form action="sevelet?method=set&user=job" method="post" onsubmit="return chech(this)">
        <table align="center" width="450">
        <tr>
            <td align="center" width="450">
                <h2>设置职称参数</h2>
                <hr>
            </td>
        </tr>
            <td align="center">编号:</td>
            <td><input align="center" type="text" name="ID"/></td>
        </tr>
        <tr>
            <td align="center">名称:</td>
            <td><input type="text" name="name"/></td>
        </tr>
        <tr>
            <td align="center" colspan="2">
                <input type="submit" value="确认">
            </td>
        </tr>
        <tr align="center"><td><a href="user.jsp">注销</a></td></tr>
        <br>
        <tr align="center"><td><a href="setjob1.jsp">返回上一级</a></td></tr>
        <br>
        </table>
        </form>
    </body>
    </html>
    复制代码

    职称设置界面2:

    复制代码
    <%@ page language="java" contentType="text/ html; charset=UTF-8"
        pageEncoding="UTF-8" import = "java.util.*"%>
    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="ISO-8859-1">
    <title>Insert title here</title>
    </head>
    <body>
    <pre>
    <table align="center" width="450">
            <h2>部门参数设置</h2>
            <hr>
            <tr align="center"><a href="setjob.jsp"><h3>增加职称</h3></a></tr>
            <br>
            <tr align="center"><a href="sevelet?method=jobset"><h3>删除、修改职称</h3></a></tr>
            <br>
            <tr align="center"><a href="loginM.jsp"><h3>返回上一级</h3></a></tr>
            <br>
            <tr align="center"><a href="user.jsp">注销</a></tr>
        <br>
        </table>
        </pre>
    </body>
    </html>
    复制代码
  • 相关阅读:
    Hpuoj1039--【C语言训练】角谷猜想
    hpuoj--1093: 回文数(一)
    Zoj1628--Diamond(Dfs《暴力》)
    Poj1995--Raising Modulo Numbers(快速幂)
    杭电5137--How Many Maos Does the Guanxi Worth(Spfa+暴力枚举)
    杭电1166--敌兵布阵(线段树 | 树状数组)

    南阳5--Binary String Matching(Kmp)
    CGAL
    vs c++默认路径
  • 原文地址:https://www.cnblogs.com/ldy2396/p/14220662.html
Copyright © 2011-2022 走看看