📄 paginationinsert.jsp
字号:
<%@ page contentType="text/html;charset=GBK"%>
<%@ taglib uri="/bean" prefix="bean" %>
<%@ taglib uri="/html" prefix="html" %>
<%@ taglib uri="/logic" prefix="logic" %>
<%@ taglib uri="/nested" prefix="nested" %>
<html:html >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta http-equiv="Content-Language" content="zh-cn">
<meta http-equiv="pragma" content="no-cache">
<meta name="Author" content="YuLimin">
<meta name="Description" content="Pagination Struts">
<meta name="Keywords" content="Pagination Struts">
<title>添加新记录</title>
<script language="javascript" type="text/javascript" src="Pagination.js"></script>
<html:base/>
</head>
<body onload="onloadInsert()">
<html:form method="post" action="/PersoninfoAction.do">
<table align="center" cellPadding=2 width="100%" border=2>
<tr>
<td>姓名</td>
<td><html:text property='name' ondblclick="this.value='俞黎敏'" /></td>
</tr>
<tr>
<td>性别</td>
<td><html:select property="sex"><option value="1">男</option><option value="0">女</option></html:select></td>
</tr>
<tr>
<td>手机</td>
<td><html:text property='mobile' ondblclick="this.value='13800138000'" /></td>
</tr>
<tr>
<td>地址</td>
<td><html:text property='address' ondblclick="this.value='地址地址'" /></td>
</tr>
<tr>
<td>备注</td>
<td><html:text property='memo' ondblclick="this.value='备注'" /></td>
</tr>
</table>
<logic:present name="PersoninfoForm">
<html:hidden property="id" />
<html:hidden property="method" />
<html:hidden property="action" />
</logic:present>
<logic:notPresent name="PersoninfoForm">
<html:hidden property="method" value="insert"/>
<html:hidden property="action" value="insert"/>
</logic:notPresent>
<p align="center"><html:submit value="添 加"/> <html:reset value="重 来"/></p>
</html:form>
<p align="center">Over</p>
<br/>
<hr/>
</body>
</html:html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -