📄 linkmangroup.jsp
字号:
<%@ page language="java" contentType="text/html; charset=gb2312"
pageEncoding="GBK"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<c:if test="${empty lps}">
<c:set var="title" value="新增联系人组"/>
<c:set var="method" value="add"/>
</c:if>
<c:if test="${not(empty lps)}">
<c:set var="title" value="编辑联系人组"/>
<c:set var="method" value="update"/>
</c:if>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title></title>
<style type="text/css">
<!--
body,td,th {
font-size: 12px;
}
.bian {
border: 1px solid #00FF99;
}
body {
background-image: url(../../Images/dw.gif);
}
-->
</style>
</head>
<body>
<h2 class="STYLE1">${title}</h2>
<br><br>
<c:url value="/LinkManGroupServlet" var="add"/>
<form action="${add}" method="post" id="myfrom">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<input type="hidden" name="method" value="${method}" />
<input type="hidden" name="groupId" value="${lps.groupId}" />
<tr>
<td width="161" height="20" align="right">联系人组名:</td>
<td height="20"><input name="groupName" type="text" class="bian" size="20" value="${lps.groupName}"></td>
</tr>
<tr>
<tr>
<td height="20" align="right"> </td>
<td height="20"> </td>
</tr>
<tr>
<td width="161" height="20" align="right"> </td>
<td height="20"><input type="submit" name="Submit" value="提 交"></td>
</tr>
</table>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -