taglib uri="/struts-tags" prefix="s"

<%@ 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>
			&nbsp;&nbsp;
			<a href="${pageContext.request.contextPath }/">删除</a>
		</TD>
	</TR>
</s:iterator>

猜你喜欢

转载自blog.csdn.net/javadamn/article/details/88728859
今日推荐