?? missingformdata.jsp
字號:
<%@ page import="com.sun.j2ee.workflow.control.exceptions.MissingFormDataException" %><%@ page import="java.util.Collection" %><%@ page import="java.util.Iterator" %><p><% MissingFormDataException error = (MissingFormDataException)request.getAttribute("missingFormData"); Collection missingFields = null; if (error != null) missingFields = error.getMissingFields();%><font size="5" color="red"><%= error.getMessage() %></font><p> Please return to the previous page using the back button on your browser and ensure that the following fields are properly entered and re-submit the form.<ul><% if (missingFields != null) { Iterator it = missingFields.iterator(); while (it.hasNext()) { String item = (String)it.next();%> <li><%= item %></li><% } %><% } %></ul>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -