incnewdishlist.jsp.svn-base

来自「这是基于spring +hibernate的项目」· SVN-BASE 代码 · 共 27 行

SVN-BASE
27
字号
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<table width="100%"  border="0" cellspacing="0" cellpadding="0">
<tr>
<td colspan="3"><img src="images/new_product_top.gif" width="163" height="37"></td>
</tr>
<tr>
<td width="1" bgcolor="#D9D9D9"></td>
<td width="161">
<table width="100%"  border="0" cellspacing="5" cellpadding="0">
<c:forEach var="newDishItem" items="${newDishList}" begin="0" end="3">
  <tr>
	<td width="52%" height="50" align="center">
	<c:forEach var="imageItem" items="${newDishItem.images}" begin="0" end="0">
	<a href="<c:url value="/upload/"/><c:out value="${imageItem.newname}"/>" target="_blank"><img src="<c:url value="/upload/"/><c:out value="${imageItem.newname}"/>" width="80" height="62" class="image_border" onMouseOver="this.className='image_border_over'" onMouseOut="this.className='image_border'" border="0"></a>
	</c:forEach>
	</td>
	<td width="48%" height="50"><a href="<c:url value="/viewDish.jspx"/>?dishId=<c:out value="${newDishItem.id}"/>"><c:out value="${newDishItem.name}"/></a><br><span class="price_normal">¥<c:out value="${newDishItem.price}"/></span></td>
  </tr>
</c:forEach>
</table>
</td>
<td width="1" bgcolor="#D9D9D9"></td>
</tr>
<tr>
<td colspan="3"><img src="images/new_product_bottom.gif" width="163" height="9"></td>
</tr>
</table>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?