📄 selectchn.jsp
字号:
<%@ page contentType="text/html; charset=gb2312" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html" %>
<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
<%@ taglib uri="/smartweb" prefix="s" %>
<%
String contextPath = request.getContextPath();
%>
<html:html>
<head>
<title> <s:Language key="typelist"/> </title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" href="<%= contextPath %>/css/css.jsp" type="text/css">
<script src="<%= contextPath %>/js/billlist.js"></script>
<script src="<%= contextPath %>/js/util.js"></script>
<script language="JavaScript">
var contextPath = '<%= contextPath %>';
function selectOne(value) {
top.window.returnValue = value;
top.window.close();
}
function ev_check() {
return true;
}
function ev_resetForm() {
resetForm();
}
</script>
</head>
<body color=black>
<style>
body { font-size: 10pt; margin-left: 0px; margin-top: 0px;font-family: "<s:Language key='songti'/>"; scrollbar-base-color: #B6F48F; scrollbar-arrow-color: #ffffff; text-align: center;}
</style>
<html:form styleId="formList" method="post" action="/dynaform/document/selectbychn.do">
<html:hidden property="_orderby"/>
<html:hidden property="_desc"/>
<html:hidden property="_currpage"/>
<html:hidden property="_pagelines"/>
<input type="hidden" name="channelid" value="<c:out value="${param.channelid}"/>">
<input type="hidden" name="_rowcount" value="<c:out value='${requestScope.LIST.rowCount}' />">
<table class="list-table" border="0" cellpadding="4" cellspacing="0" width="100%">
<tr>
<td class="list-srchbar">
<s:Language key="name"/>:<html:text property="s_name" size="10"/>
<input type="submit" value="<s:Language key='query'/>" class="bt" onclick="resetPage()"/>
<input type="button" name="btnReset" value="<s:Language key="reset"/>" class="bt" onclick="ev_resetForm()">
</td>
<td class="list-srchbar" align="right">
<input type="button" class="btcss" onclick="doExit()" value="<s:Language key="cancel"/>">
<input type="button" class="btcss" onclick="doEmpty()" value="<s:Language key="clear"/>">
</td>
</tr>
<tr>
<td colspan="2" align="right"><s:PageNav dpName="LIST"/></td>
</tr>
<tr>
<td colspan="2" class="list-datas">
<table class="list-datas-table" border="0" cellpadding="0" cellspacing="1">
<tr class="row-hd">
<td width="30%"><a href="javascript:doOrderby('id')"><font color="#FFFFFF"><s:Language key="code"/></font></a> <s:OrderImg form="ParamsTableWrapForm" field="id"/></td>
<td width="30%"><font color="#FFFFFF"><s:Language key="abstract"/></font></a></td>
</tr>
<c:forEach var="item" items="${requestScope.LIST.datas}">
<tr class="row-content">
<a href="javascript:selectOne('<c:out value='${item.id}'/>;<c:out value='${item._brief}'/>')">
<td nowrap><c:out value="${item.id}" /></td>
<td nowrap><c:out value="${item._brief}" /></td>
</a>
</tr>
</c:forEach>
</table>
</td>
</tr>
<tr>
<td height="25" colspan="2" bgcolor="#FFFFFF" align="right"><s:PageNav dpName="LIST"/></td>
</tr>
</table>
</html:form>
</body>
</html:html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -