addmodule.jsp

来自「一个oa系统」· JSP 代码 · 共 66 行

JSP
66
字号
<%@ page language="java" pageEncoding="gbk"%>

<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean"%>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html"%>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic"%>
<%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles"%>


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html lang="true">
<head>
	<html:base />

	<title>添加栏目</title>
	<style type="text/css">
<!--
body,td,th {
	font-size: 12px;
}
body {
	margin-left: 0px;
	margin-top: 15px;
	margin-right: 0px;
	margin-bottom: 0px;
}
.STYLE1 {
	font-size: 14px;
	color: #FFFFFF;
	font-weight: bold;
}
-->
</style>

</head>

<body>
<html:form action="/addModule">
	<table width="400" height="90" border="0" align="center"
		cellpadding="0" cellspacing="1" bgcolor="#3868f8">
		<tr>
			<td height="30" bgcolor="#A4B5E3">
				<div align="center">
					<span class="STYLE1">添加栏目</span>
				</div>
			</td>
		</tr>
		<tr>
			<td height="30" bgcolor="#FFFFFF">
				<div align="center">
					栏目名称:
					<html:text property="modulename"></html:text>
				</div>
			</td>
		</tr>
		<tr>
			<td height="30" bgcolor="#FFFFFF">
				<div align="center">
					<html:submit>添 加</html:submit>
				</div>
			</td>
		</tr>
	</table>
</html:form>
</body>
</html:html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?