?? show.jsp
字號:
<%@page contentType="text/html" pageEncoding="UTF-8"%><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"><%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %><%@taglib prefix="html" uri="http://jakarta.apache.org/struts/tags-html" %><%@taglib prefix="order" uri="/WEB-INF/tlds/orders.tld" %><jsp:useBean id="OrderHandler" class="controller.OrderHandler" /><c:set var="page_title" value="Show Orders" /><html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>${page_title}</title> </head> <body> <%@ include file="nav.jsp" %> <h2>${page_title}</h2> <html:form action="/admin/show_handler" method="get"> <html:select property="selId" onchange="submit()"> <html:option value="">--- choose ---</html:option> <html:optionsCollection property="list" value="id" label="id" /> </html:select> <br /> <input type="submit" name="raw_button" value="Delete"/> </html:form> <c:if test="${!empty ShowForm.selId}"> <c:set var="O" value="${ShowForm.selOrder}" /> <hr /> ${order:printOrder(O)} </c:if> </body></html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -