📄 attach.jsp
字号:
<%@ page contentType="text/html;charset=GB2312" %>
<%@ page import="cn.com.aheadsoft.business.TaskAppAttachBusiness,cn.com.aheadsoft.recordset.TaskAppAttachRecordSet,java.text.DateFormat,cn.com.aheadsoft.util.StringFormat" %>
<%
String detailID=request.getParameter("detailID");
TaskAppAttachRecordSet accessoriesSet = new TaskAppAttachRecordSet();
TaskAppAttachBusiness appAttachBu=new TaskAppAttachBusiness();
appAttachBu.setQueryWhereDetail(detailID);
appAttachBu.execute("query");
accessoriesSet=appAttachBu.getTaskAppAttachRecordSet();
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<link rel="stylesheet" type="text/css" href="/krm/jsp/css/css.css">
<script language="JavaScript" type="text/JavaScript">
function openWin(url) {
window.open(url,'','toolbar=no,location=no,menubar=no,resizable=1,scrollbars=yes,left=0,top=0,width=600,height=400');
}
</script>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="100%" cellpadding="0" cellspacing="0" height="100%" >
<tr class="common">
<td class="common" valign="middle" align="left">
<%
if((null != accessoriesSet) && (accessoriesSet.size() != 0)){
while(accessoriesSet.next()){ %>
[ <a href="/krm/servlet/TaskAppUploadServlet?status=q&module=av&id=<%= accessoriesSet.getAA_ID() %>"><%= StringFormat.Source2GB(accessoriesSet.getAA_FileName()) %></a> ]
<% }
} %>
</td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -