📄 consignee_show.jsp
字号:
<%@ page language="java" pageEncoding="GBK"%>
<%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme() + "://"
+ request.getServerName() + ":" + request.getServerPort()
+ path + "/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>添加收货人</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<link rel="stylesheet" type="text/css" href="employee/css/style.css">
</head>
<body topMargin=0 leftmargin="0" marginheight="0">
<table border=1 width="97%" cellspacing=1 cellpadding=3 align=center
bordercolor="#326598">
<tr bgcolor="#e8f4ff">
<td height=25 colspan="9" background="admin/images/tile_sub.gif">
货源信息->收货管理
</td>
</tr>
<tr>
<td>
发货人编号
</td>
<td>
所属公司
</td>
<td>
发货人
</td>
<td>
地址
</td>
<td>
电话
</td>
<td>
身份证
</td>
</tr>
<c:forEach var="c" items="${requestScope.list}">
<tr>
<td>
<a href="seeconsignee.do?consigneeId=${c.consigneeId}">${c.consigneeId}</a>
</td>
<td>
<a href="http://www.baidu.com" target="_blank">${c.consigneeName} </a>
</td>
<td>
${c.consigneeCharge}
</td>
<td>
${c.consigneeAddr}
</td>
<td>
${c.consigneePhone}
</td>
<td>
${c.consigneeIdCard}
</td>
</tr>
</c:forEach>
<tr>
<td colspan="10" align="right">
<input type="button" value="全选" id="selectAll"
onclick="setcheck();" />
[
<a href="consigneeshow.do?page=0">首页</a>] [ [
<a href="consigneeshow.do?page=${requestScope.forward }">上一页</a>]
[
<a href="consigneeshow.do?page=${requestScope.back }">下一页</a>]
[
<a href="consigneeshow.do?page=${requestScope.end }">尾页</a>]
[${requestScope.now }]/[${requestScope.count }]页
<input type="button" value="增加收货人"
onclick="javascript:window.location.href='employee/goods/new_consignee.jsp'" />
<input type="button" value="返回" onclick="javascript:history.back()">
</td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -