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

📄 addressinfo.jsp

📁 客户关系管理系统主要管理新老客户的一些信息并可以发现潜在客户
💻 JSP
字号:
<%@ page language="java" pageEncoding="gb2312"%>
<%@ include file="/commons/taglibs.jsp"%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
	<head>

		<title>My JSP 'announcementForm.jsp' starting page</title>

		<%@ include file="/commons/meta.jsp"%>

	</head>

	<body class="bodycolor" topmargin="5">

		<table class="title1">
			<tr>
				<td class="Big"><img src="${ctx }/images/notify_open.gif" align="absmiddle">
					<span class="big3">通讯录详情</span>
				</td>
			</tr>
		</table>
		<br>

		<html:form action="address.do?p=save" method="post">
			<html:hidden property="id" />
			<table cellspacing="1" class="tablestyle1" align="left" cellpadding="3">
				<tr>
					<td nowrap class="TableHeader" colspan="4" align="left">
						&nbsp;&nbsp;基本信息:
					</td>
				</tr>
				<tr>
					<td nowrap class="TableData" width="25%">
						&nbsp;&nbsp;姓名:
					</td>
					<td nowrap class="TableData" colspan="3">
						<html:text property="name" value="${address.name }" readonly="true"   size="20" maxlength="100" />
					</td>
				</tr>
				<tr>
					<td nowrap class="TableData" width="25%">
						&nbsp;&nbsp;年龄:
					</td>
					<td nowrap class="TableData" width="25%">
						<html:text property="age"   value="${address.age }" readonly="true" size="20"
							maxlength="100" />
					</td>
					<td nowrap class="TableData" width="25%">
						&nbsp;&nbsp;性别:
					</td>
					<td nowrap class="TableData" width="25%">
					<html:text property="sex"  value="${address.sex }" readonly="true" size="20"
							maxlength="100" />
					</td>
				</tr>
				<tr>
					<td nowrap class="TableHeader" colspan="4" align="left">
						&nbsp;&nbsp;联系方式:
					</td>
				</tr>
				<tr>
					<td nowrap class="TableData" width="25%">
						&nbsp;&nbsp;家庭住址:
					</td>
					<td nowrap class="TableData" width="25%">
						<html:text property="homeaddress"  value="${address.homeaddress }" readonly="true"
							size="20" maxlength="100" />
					</td>
					<td nowrap class="TableData" width="25%">
						&nbsp;&nbsp;QQ/MSN:
					</td>
					<td nowrap class="TableData" width="25%">
						<html:text property="qq"   value="${address.qq }" readonly="true" size="20"
							maxlength="100" />
					</td>
				</tr>
				<tr>
					<td nowrap class="TableData" width="25%">
						&nbsp;&nbsp;Email:
					</td>
					<td nowrap class="TableData" width="25%">
						<html:text property="email"   value="${address.email }" readonly="true" size="20"
							maxlength="100" />
					</td>
					<td nowrap class="TableData" width="25%">
						&nbsp;&nbsp;电话:
					</td>
					<td nowrap class="TableData" width="25%">
						<html:text property="telephone" value="${address.telephone }" readonly="true" size="20"
							maxlength="100" />
					</td>
				</tr>
				<tr align="center">
					<td nowrap class="TableData" colspan="5">
						<html:button property="返回" onclick="history.back(-1);" styleClass="BigButton" >返回</html:button>
					</td>
				</tr>

			</table>
		</html:form>
		<br>
		<br>
	</body>
</html>

⌨️ 快捷键说明

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