<%@ taglib uri="/struts-tags" prefix=“s”%>
<s:iterator var="c" value="list">
<TR style="FONT-WEIGHT: normal; FONT-STYLE: normal; BACKGROUND-COLOR: white; TEXT-DECORATION: none">
<TD><s:property value="#c.cust_name"/></TD>
<TD><s:property value="#c.cust_level"/></TD>
<TD><s:property value="#c.cust_source"/></TD>
<TD><s:property value="#c.cust_industry"/></TD>
<TD><s:property value="#c.cust_phone"/></TD>
<TD><s:property value="#c.cust_mobile"/></TD>
<TD>
<a href="${pageContext.request.contextPath }/">修改</a>
<a href="${pageContext.request.contextPath }/">删除</a>
</TD>
</TR>
</s:iterator>