?? 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 + -