?? planpurchform.jsp
字號:
<%@page pageEncoding="GBK"%>
<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
<%@ taglib uri="http://java.sun.com/jstl/fmt_rt" prefix="fmt" %>
<%@ taglib uri="http://www.springmodules.org/tags/commons-validator" prefix="v" %>
<%@ taglib uri="http://www.springframework.org/tags" prefix="spring" %>
<html>
<head>
<title>
planPurchForm
</title>
<LINK href="<%=request.getContextPath()%>/img/PowerStone.css" type="text/css" rel="stylesheet">
</head>
<table class="tableFrame" cellspacing="1">
<tr>
<td class="tdTitle">庫存采購計劃</td>
</tr>
<td class="tdContent">
<table class="tableNoBorderCenter" align="center">
<spring:bind path="purchase.*">
<c:if test="${not empty status.errorMessages}">
<div class="error">
<c:forEach var="error" items="${status.errorMessages}">
<c:out value="${error}" escapeXml="false"/><br />
</c:forEach>
</div>
</c:if>
</spring:bind>
<form method="post" action="<%=request.getContextPath()%>/dreambike/edit_plan_purch.do"
name="purchaseForm">
<table class="tableNoBorderCenter" align="center">
<spring:bind path="purchase.purchaseID">
<input type="hidden" name="<c:out value="${status.expression}"/>" value="<c:out value="${status.value}"/>"/>
</spring:bind>
<c:if test="${not empty orderID}">
<input type="hidden" name="orderID" value="<c:out value="${orderID}"/>"/>
</c:if>
<tr>
<th><label for="purchasePlan">
purchasePlan:</label></th>
<td>
<spring:bind path="purchase.purchasePlan">
<textarea name="<c:out value="${status.expression}"/>"
cols="15" rows="5"><c:out value="${status.value}"/></textarea>
<span class="fieldError"><c:out value="${status.errorMessage}"/></span>
</spring:bind>
</td>
</tr>
<tr>
<td></td>
<td>
<input type="submit" class="button_default" name="save" value="Save"/>
<input type="submit" class="button_default" name="submitTask" value="submitTask"/>
</td>
</tr>
</table>
</form>
</table>
</td>
</table>
</body>
</html>
<script type="text/javascript">
document.forms["purchaseForm"].elements["purchasePlan"].focus();
</script>
</html>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -