⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 activities_add.jsp

📁 做的是一个客户关系管理系统
💻 JSP
字号:
<%@ page pageEncoding="GBK"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean"
	prefix="bean"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html"
	prefix="html"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
	<head>
		<title>jb-aptech毕业设计项目</title>
		<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
		<link href="../../css/style.css" rel="stylesheet" type="text/css">
		<script src="../../script/common.js"></script>
		<script type="text/javascript">
function move()
{
	document.forms[0].action = "/CrmPrj/activity.do?op=Add";
	document.forms[0].submit();
}
</script>
	</head>
	<body>

		<div class="page_title">
			客户信息管理 > 客户信息 > 交往记录 > 新建交往记录
		</div>
		<div class="button_bar">
			<button class="common_button" onclick="help('');">
				帮助
			</button>
			<button class="common_button" onclick="back();">
				返回
			</button>
			<button class="common_button" onclick="javascript:move()">
				保存
			</button>
		</div>
		<html:form action="/activity">
			<table class="query_form_table">
				<tr>
					<th>
						时间
					</th>
					<td>
						<html:text property="activity.date"></html:text>
						<span class="red_star">*</span>
					</td>
					<th>
						地点
					</th>
					<td>
						<html:text property="activity.atvPlace"></html:text>
						<span class="red_star">*</span>
					</td>
				</tr>
				<tr>
					<th>
						概要
					</th>
					<td>
						<html:text property="activity.atvTitle"></html:text>
						<span class="red_star">*</span>
					</td>
					<th>
						&nbsp;
					</th>
					<td>
						&nbsp;
					</td>
				</tr>
				<tr>
					<th>
						详细信息
					</th>
					<td colspan="3">
						<html:textarea cols="50" rows="6" property="activity.atvDesc"> </html:textarea>
					</td>
				</tr>
			</table>
		</html:form>
	</body>
</html>

⌨️ 快捷键说明

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