| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <%@ page contentType="text/html;charset=GBK"%>
- <%@ taglib uri="http://tiles.apache.org/tags-tiles" prefix="tiles" %>
- <%@ taglib uri="/WEB-INF/tlds/html.tld" prefix="html" %>
- <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
- <%@ page import="java.util.*"%>
- <% HashMap hashMap =(HashMap)request.getAttribute("hashMap");
- String showName=(String)hashMap.get("showName");
- String appName=(String)hashMap.get("viewId");
- String findKey=(String)hashMap.get("findKey");
- if (findKey==null) findKey="";
- String engineName=(String)hashMap.get("engineName");
- %>
- <html>
- <tiles:insertAttribute name="header"/>
- <body>
- <%@ include file="button.jsp"%>
- <%@ include file="message.jsp"%>
- <div class="l-content">
- <form name="ViewForm" id="ViewForm" method="post">
- <input name="appName" id="appName" type="hidden" value=<%=appName%>></input>
- <input id="li-name" type="hidden" value=<%=engineName%>></input>
- <input name="k" id="key" type="hidden" value="<%=findKey%>" />
- <input name="checkedItems" type="hidden" value="${checkedItems}"/>
- <input name="stype" type="hidden" value="${stype}"/>
- <c:if test="${isSearch ne '1'}">
- ${searchHtml}
- </c:if>
- <html:viewDefaultBody />
-
- </form>
- <html:viewDefaultPager />
- </div>
- </body>
- </html>
|