• 2021.5.12


    三--1

    add:

    <%@ page contentType="text/html; charset=utf-8" import="java.sql.*" errorPage="error.jsp"%>
    <html>

    <head>
    <title>添加学生信息</title>
    <link rel="stylesheet" type="text/css" href="css/style.css">
    </head>

    <body>
    <form action="addsave.jsp" method="post" onsubmit="return dosubmit();">
    <h2>添加学生信息</h2>
    <table style=" 50%">
    <tr>
    <th width="30%">学号:</th>
    <td width="70%"><input name="stunum" type="text"></td>
    </tr>
    <tr>
    <th>姓名:</th>
    <td><input name="stuname" type="text"></td>
    </tr>
    <tr>
    <th>性别:</th>
    <td>
    <input type="radio" name="sex" value="男" checked>男
    <input type="radio" name="sex" value="女">女
    </td>
    </tr>
    <tr>
    <th>出生日期:</th>
    <td><input name="birthday" type="text"></td>
    </tr>
    <tr>
    <th>家庭住址:</th>
    <td><input name="location" type="text"></td>
    </tr>
    <tr>
    <td colspan="2"><input type="submit" name="submit" value="添加"> <input type="reset" value="重置"></td>
    </tr>
    </table>
    </form>
    <script type="text/javascript" src="./js/dataCheck.js"> </script>
    </body>

    </html>

  • 相关阅读:
    AWK 学习手札之一: an AWK tutorial
    SQL语句教程学习笔记之一
    c#支付宝支付
    table隔行变色
    读取接口
    倒计时
    新建的mvc项目运行之后报错找不到页面
    sql向表中添加字段
    取小数点后面几位数
    H5拨打电话
  • 原文地址:https://www.cnblogs.com/SirNie/p/14909266.html
Copyright © 2020-2023  润新知