📄 financelist_left.asp
字号:
<%@language="vbscript" codepage="936"%>
<%response.buffer = true%>
<%Public HOME_PATH:HOME_PATH = "../"%>
<!--#include file="../db.asp"-->
<!--#include file="../inc/function.asp"-->
<%Public title:title = "财务类别"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title><%=title%></title><%
if isLogin = false then
Response.Write viewinfo("Logingo","","")
Response.end
end if
%>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="Generator" content="EditPlus">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<link href="<%=HOME_PATH%>css/style.css" rel="stylesheet" type="text/css">
<style type=text/css>
.hidden {
DISPLAY: none; FONT-SIZE: 12px; FONT-FAMILY: "宋体"
}
body , div , span , td{font-size:12px;}
.clicked { background-color:#08246B;color:#ffffff;}
.clicked_ {background-color:#ffffff;color:#000000;}
</style>
<script language=javascript>
function clicked_(s) {
var td_len = td__.length;
if (td_len == undefined) {
td__.className = 'clicked' ;
}else{
for(i_ = 0 ; i_<td_len;i_++) {
if(s!=i_) {
td__[i_].className = '';
}else{
td__[i_].className = 'clicked';
}
}
}
}
</script>
</head>
<body style = 'margin:2px;'>
<div style = 'text-align:center;'>
<table cellspacing=0 cellpadding=0 style = 'width:98%;' border='0' class = 'LinkA'>
<tbody>
<%
Rs.Open("select * from incfinancetype Order By ftypeArray Desc"),Conn,1,1
if not Rs.eof then
thisCount = Rs.RecordCount
for i = 1 to thisCount
ftypeid = Rs("ftypeid")
ftypeName = Rs("ftypeName")
ftypeArray = Rs("ftypeArray")
ftypeRemark = Rs("ftypeRemark")
%>
<tr onclick = "javascript:clicked_(<%=i-1%>);parent.right.location.href = '<%=HOME_PATH%>finance/financelist_right.asp?ftypeid=<%=ftypeid%>';" style='cursor: hand' >
<td width='16'><img style='cursor: hand' height='16' src='../images/close.gif' width='16' border = '0' name = 'imgALL'/></td>
<td><span id = 'td__'><%=ftypeName%></span></td>
<%
Rs.movenext
next
%>
<tr onclick = "javascript:clicked_(<%=i-1%>);parent.right.location.href = '<%=HOME_PATH%>finance/financelist_right.asp';" style='cursor: hand'>
<td width='16'><img style='cursor: hand' height='16' src='../images/close.gif' width='16' border = '0' name = 'imgALL'/></td>
<td><span id = 'td__' id = 'td__' >全部类别</span></td>
</tr>
<%
else
%>
<tr onclick = "javascript:clicked_(0);parent.right.location.href = '<%=HOME_PATH%>finance/financelist_right.asp';" style='cursor: hand'>
<td width='16'><img style='cursor: hand' height='16' src='../images/close.gif' width='16' border = '0' name = 'imgALL'/></td>
<td><span id = 'td__' id = 'td__' >暂无类别</span></td>
</tr>
<%
end if
Rs.close
ConnClose()
%>
</tbody>
</table>
</div>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -