list-dlg-layout.jsp 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <%@ page contentType="text/html;charset=GBK"%>
  3. <%@ taglib uri="http://tiles.apache.org/tags-tiles" prefix="tiles" %>
  4. <%@ taglib uri="/WEB-INF/tlds/html.tld" prefix="html" %>
  5. <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
  6. <%@ page import="java.util.*"%>
  7. <% HashMap hashMap =(HashMap)request.getAttribute("hashMap");
  8. String showName=(String)hashMap.get("showName");
  9. String appName=(String)hashMap.get("viewId");
  10. String findKey=(String)hashMap.get("findKey");
  11. if (findKey==null) findKey="";
  12. String engineName=(String)hashMap.get("engineName");
  13. %>
  14. <html>
  15. <tiles:insertAttribute name="header"/>
  16. <body>
  17. <%@ include file="button.jsp"%>
  18. <%@ include file="message.jsp"%>
  19. <div class="l-content">
  20. <form name="ViewForm" id="ViewForm" method="post">
  21. <input name="appName" id="appName" type="hidden" value=<%=appName%>></input>
  22. <input id="li-name" type="hidden" value=<%=engineName%>></input>
  23. <input name="k" id="key" type="hidden" value="<%=findKey%>" />
  24. <input name="checkedItems" type="hidden" value="${checkedItems}"/>
  25. <input name="stype" type="hidden" value="${stype}"/>
  26. <c:if test="${isSearch ne '1'}">
  27. ${searchHtml}
  28. </c:if>
  29. <html:viewDefaultBody />
  30. </form>
  31. <html:viewDefaultPager />
  32. </div>
  33. </body>
  34. </html>