📄 cust_list.jsp
字号:
<%@ page language="java" pageEncoding="UTF-8"%>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean"%>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-logic" prefix="logic"%>
<%@ page isELIgnored="false"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>show select result</title>
<link href="../css/index.css" rel="stylesheet" type="text/css">
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0"
align="center">
<tr>
<td height="30">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="100" height="20" align="right">
<bean:message key="lable1.customerName"/>
</td>
<td>
<bean:message key="customer.pingfan"/>
</td>
</tr>
</table>
</td>
</tr>
</table>
<table width="100%" cellspacing="0" cellpadding="3" align="center"
class="StyleBorderOnly" bgcolor="#FFFFFF">
<tr>
<td width="5%" align="center" class="StylePopped">
<bean:message key="button.select"/>
</td>
<td align="center" class="StylePopped">
<bean:message key="lable1.customerName"/>
</td>
<td align="center" class="StylePopped">
<bean:message key="lable1.customerCCate"/>
</td>
<td align="right" class="StylePopped">
<bean:message key="lable1.customerCTrade"/>
</td>
<td align="center" class="StylePopped">
<bean:message key="lable1.customerCGrade"/>
</td>
<td align="center" class="StylePopped">
<bean:message key="lable1.MS"/>
</td>
<td align="center" class="StylePopped">
<bean:message key="button.caozuo"/>
</td>
<logic:notPresent name="list">
there is not list!!!!!
</logic:notPresent>
<logic:present name="list">
<logic:iterate id="customer" name="list"
type="com.sinoest.po.SCustomer">
<tr height="20" bgcolor="#FFFFFF"
onmouseover="this.bgColor='beige';"
onmouseout="this.bgColor='#FFFFFF';">
<td class="TableColA" align="center">
<input type="checkbox" name="checkbox2" value="${customer.CId}">
</td>
<td class="TableColA">
${customer.CName}
</td>
<td align="center" class="TableColA">
${customer.CCate}
</td>
<td align="center" class="TableColA">
${customer.CTrade}
</td>
<td align="center" class="TableColA">
${customer.CGrade}
</td>
<td align="center" class="TableColA">
${customer.MState}
</td>
<td align="center" class="TableColA">
<a href="#" onclick="openWin('custManager.do?CId=${customer.CId}&method=selectByCId','addCust',600,200);" ><bean:message key="button.modify"/></a>
</td>
</tr>
</logic:iterate>
</logic:present>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -