zoukankan      html  css  js  c++  java
  • web完善之路

    11.24

    今天对web系统进行完善,并加入jsp 的部分:没遇到什么问题。明天计划继续完善。

    代码部分:

    <%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
    <%@ page import="com.pp.DBU" %>
    <%@page import = "java.sql.*" %>
    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="UTF-8">
    <title>Insert title here</title>
    </head>
    <body>

    <form action="shanchu" border="1">
    <table align = "center" border = "1">
    <tr>
    <td>请再次输入要删除的姓名:</td>
    <td>
    <input type="text" name="xingming">
    </td>
    </tr>
    <tr align="center">
    <td colspan="2">
    <input type="submit" value="确定">
    </td>
    </tr>
    </table>
    </body>
    </html>

    <%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="UTF-8">
    <title>管理员界面</title>
    </head>
    <body>
    <form>
    <table align="center" border="1">

    <tr align="center">
    <td colspan="2">
    <input type="submit" value="增加学生对象" formaction="xuesheng.jsp" formmethod="get">
    </td>
    </tr>
    <tr align="center">
    <td colspan="2">
    <input type="submit" value="减少学生对象" formaction="delete.jsp" formmethod="get">
    </td>
    </tr>
    <tr align="center">
    <td colspan="2">
    <input type="submit" value="登记编辑分数" formaction="xuesheng.jsp" formmethod="get">
    </td>
    </tr>
    <tr align="center">
    <td colspan="2">
    <input type="submit" value="按学号查找学生成绩" formaction="xuehao.jsp" formmethod="get">
    </td>
    </tr>
    <tr align="center">
    <td colspan="2">
    <input type="submit" value="按姓名查找学生成绩" formaction="xingming.jsp" formmethod="get">
    </td>
    </tr>
    <tr align="center">
    <td colspan="2">
    <input type="submit" value="按成绩分数排序" formaction="chengji.jsp" formmethod="get">
    </td>
    </tr>
    </table>
    </form>
    </body>
    </html>

  • 相关阅读:
    .net从网络接口地址获取json,然后解析成对象(一)
    .net获取本地ip地址
    .net上传文件,利用npoi读取文件信息到datatable里
    .net利用NPOI生成excel文件
    .NET获取城市信息(将三字代码转换成城市名)
    JS下拉页面时一个横幅的样式和js
    整数中1出现的次数(1~n)
    连续子数组的最大和
    最小的K个数
    数组中出现次数超过一半的数字
  • 原文地址:https://www.cnblogs.com/092e/p/14170059.html
Copyright © 2011-2022 走看看