java代码045

code045.jsp

1<%@ page language="java" contentType="text/html; charset=UTF-8" 2 pageEncoding="UTF-8"%> 3<!DOCTYPE html> 4<html> 5<head> 6<meta charset="UTF-8"> 7<title>javaBean应用</title> 8</head> 9<body> 10<form action="code046.jsp" method="post"> 11<table border="1" style="border-collapse:collapse;"> 12<tr> 13 <td colspan="2"><strong>添加用户信息</strong></td> 14</tr> 15<tr> 16 <td>姓名:</td> 17 <td><input type="text" name="name" id="name"></td> 18</tr> 19<tr> 20 <td>年龄:</td> 21 <td><input type="text" name="age" id="age"></td> 22</tr> 23<tr> 24 <td>性别:</td> 25 <td><input type="text" name="sex" id="sex"></td> 26</tr> 27<tr> 28 <td>住址:</td> 29 <td><input type="text" name="address" id="address"></td> 30</tr> 31<tr> 32 <td colspan="2"><input type="submit" name="submit" value="添加"></td> 33</tr> 34</table> 35</form> 36</body> 37</html>
点赞
收藏

评论区

加载中...

相关推荐

MySQL:[Err] 1292 - Incorrect datetime value: ‘0000-00-00 00:00:00‘ for column ‘CREATE_TIME‘ at row 1

文章目录问题用navicat导入数据时,报错:原因这是因为当前的MySQL不支持datetime为0的情况。解决修改sql\mode:sql\mode:SQLMode定义了MySQL应支持的SQL语法、数据校验等,这样可以更容易地在不同的环境中使用MySQL。全局s

Oracle 分组与拼接字符串同时使用

SELECTT.,ROWNUMIDFROM(SELECTT.EMPLID,T.NAME,T.BU,T.REALDEPART,T.FORMATDATE,SUM(T.S0)S0,MAX(UPDATETIME)CREATETIME,LISTAGG(TOCHAR(

手写Java HashMap源码

HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程22

[go-linq]-Go的.NET LINQ式查询方法

关于我开发者的福音,go也支持linq了坑爹的集合go在进行集合操作时,有很不舒服的地方,起初我真的是无力吐槽,又苦于找不到一个好的第三方库,只能每次写着重复代码。举个栗子类学生{姓名年龄性别}1、现在有10个学生的数组,如果我要统计所有年龄大于20岁的人,那我需要一、遍历二、自定义条件三、再append数组添加。2、接着我又

java代码046

code046.jsp保存并展示姓名:年龄:性别:住址:

OPENCV中文显示乱码 JAVA处理

网上搜索的都是C或者python的解决思路。这里给个java的处理思路1.Imgproc.putText中文乱码Imgproc.putText(image,newString(("性别:"gender"年龄:"age).getBytes("UTF8")),newPoint(rectsi