?? projecttj_editlist.asp
字號:
<!--#include file="../Include/TimeOut.asp"-->
<%modulecode="0502"%>
<!--#include file="../Include/ModuleUserCheck.asp"-->
<!--#include file="../Include/online.asp"-->
<html>
<head>
<title>項目列表</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" href="/CssLib/CssLink.css">
</head>
<Script Language=JavaScript>
<!--
function open1(Code)
{
window.open("YiJian_ContentDisplay.asp?code="+Code,"推薦意見","height=410,width=500,toolbar=no,menubar=no,scrollbars=yes,resizable=no,status=no,location=no")
}
//-->
</Script>
<body bgcolor="#FFFFFF" text="#000000" onload="window.top.ProjectMax()">
<%
dim objrec 'recordset對象
dim strsql 'sql語句
if not Request.QueryString("strsql")="" then
if session("orderType")=" asc" then
orderType=" desc"
session("orderType")=" desc"
else
orderType=" asc"
session("orderType")=" asc"
end if
select case Request.QueryString("strsql")
case "query" '由查詢轉來
dim NDPC
dim code
dim name
dim role
dim strQueryType
dim strSQLWhere
code=trim(Request.Form("ProjectCode"))
name=trim(Request.Form("ProjectName"))
ProjectType=trim(Request.Form("ProjectType"))
ConProjectCode=trim(Request.Form("ConProjectCode"))
PlanCode=trim(Request.Form("PlanCode"))
Username=trim(Request.Form("Username"))
TechType=trim(Request.Form("TechType"))
ProjectJD=trim(Request.Form("ProjectJD"))
JDZK=trim(Request.Form("JDZK"))
NDPC=trim(Request.Form("NDPC"))
NDPC2=trim(Request.Form("NDPC2"))
KXXBG=trim(Request.Form("KXXBG"))
TJBZ=trim(Request.Form("TJBZ"))
XGBZ=trim(Request.Form("XGBZ"))
Depart=trim(Request.Form("Depart"))
ZhuChiCom=trim(Request.Form("ZhuChiCom"))
ShuoZaiQv=trim(Request.Form("ShuoZaiQv"))
FaRenCode=trim(Request.Form("FaRenCode"))
ComPanyPro=trim(Request.Form("ComPanyPro"))
CompanyType=trim(Request.Form("CompanyType"))
RegType=trim(Request.Form("RegType"))
role=trim(Request.Form("role"))
'復選框選中時,strQueryType="%"
if Request.Form("checkbox").Count=1 then
strQueryType="%"
else
strQueryType=""
end if
'無任何where選項時
strsql="select * from XT_VD_ProjectName where 項目進度='推薦'"
'根據角色生成where選項
select case role
case 0 '系統維護員
strSQLWhere=""
case 1 '申報者
strSQLWhere=" and 項目負責人='"&session("usercode")&"'"
case 2 '主管部門
strSQLWhere=" and left(項目負責人,3)='"&left(session("usercode"),3)&"'"
case 3 '項目計劃員
strSQLWhere=""
case 4 '項目管理員
strSQLWhere=" and 分配接收處室='"&session("Departcode")&"'"
case 5 '項目撥款員
strSQLWhere=" and 合同編碼<>''"
case 6 '部門領導
strSQLWhere=""
end select
'按查詢界面各輸入框生成多條件where選項
if not code="" then
strSQLWhere=strSQLWhere+" and 項目編碼 like '"+strQueryType+code+strQueryType+"'"
end if
if not name="" then
strSQLWhere=strSQLWhere+" and 項目名稱 like '"+strQueryType+name+strQueryType+"'"
end if
if not ProjectType="" then
strSQLWhere=strSQLWhere+" and 項目類別 like '"+strQueryType+ProjectType+strQueryType+"'"
end if
if not ConProjectCode="" then
strSQLWhere=strSQLWhere+" and 合并編碼 like '"+strQueryType+ConProjectCode+strQueryType+"'"
end if
if not PlanCode="" then
strSQLWhere=strSQLWhere+" and 計劃編碼 like '"+strQueryType+PlanCode+strQueryType+"'"
end if
if not Username="" then
strSQLWhere=strSQLWhere+" and 負責人姓名 like '"+strQueryType+Username+strQueryType+"'"
end if
if not TechType="" then
strSQLWhere=strSQLWhere+" and 技術領域 like '"+strQueryType+TechType+strQueryType+"'"
end if
if not ProjectJD="" then
strSQLWhere=strSQLWhere+" and 項目進度 like '"+strQueryType+ProjectJD+strQueryType+"'"
end if
if not JDZK="" then
strSQLWhere=strSQLWhere+" and 進度狀況 like '"+strQueryType+JDZK+strQueryType+"'"
end if
if not NDPC="" and not NDPC2="" then
strSQLWhere=strSQLWhere+" and (年度批次 between '"+NDPC+"' and '"+NDPC2+"')"
else if not NDPC="" and NDPC2="" then
strSQLWhere=strSQLWhere+" and 年度批次 like '"+NDPC+strQueryType+"'"
else if NDPC="" and not NDPC2="" then
strSQLWhere=strSQLWhere+" and 年度批次 like '"+NDPC2+strQueryType+"'"
end if
end if
end if
if not KXXBG="" then
strSQLWhere=strSQLWhere+" and 可行性報告 like '"+strQueryType+KXXBG+strQueryType+"'"
end if
if not TJBZ="" then
strSQLWhere=strSQLWhere+" and 推薦標志 like '"+strQueryType+TJBZ+strQueryType+"'"
end if
if not XGBZ="" then
strSQLWhere=strSQLWhere+" and 修改標志 like '"+strQueryType+XGBZ+strQueryType+"'"
end if
if not Depart="" then
strSQLWhere=strSQLWhere+" and left(項目負責人,3) like '"+strQueryType+Depart+strQueryType+"'"
end if
if not ZhuChiCom="" then
strSQLWhere=strSQLWhere+" and 主持單位 like '"+strQueryType+ZhuChiCom+strQueryType+"'"
end if
if not ShuoZaiQv="" then
strSQLWhere=strSQLWhere+" and 所在區 like '"+strQueryType+ShuoZaiQv+strQueryType+"'"
end if
if not FaRenCode="" then
strSQLWhere=strSQLWhere+" and 法人代碼 like '"+strQueryType+FaRenCode+strQueryType+"'"
end if
if not ComPanyPro="" then
strSQLWhere=strSQLWhere+" and 企業特性 like '"+strQueryType+ComPanyPro+strQueryType+"'"
end if
if not CompanyType="" then
strSQLWhere=strSQLWhere+" and 單位類型 like '%"+CompanyType+"%'"
end if
if not RegType="" then
strSQLWhere=strSQLWhere+" and 注冊類型 like '%"+RegType+"%'"
end if
strSQL=strSQL+StrSQLWhere
case else '各頁間轉換
orderby=request.querystring("orderby")
RQSstrsql=Request.QueryString("strsql")
if orderby="" then
strsql=RQSstrsql
else
if instr(RQSstrsql,"order")=0 then
strsql=RQSstrsql+" order by "+orderby+orderType
else
strsql=left(RQSstrsql,instr(RQSstrsql,"order")-1)+" order by "+orderby+orderType
end if
end if
end select
set objres=server.CreateObject ("adodb.recordset")
objres.CursorType =3
objres.CursorLocation =3
objres.LockType =2
objres.Open strsql,strconn
dim pagesum '頁數
dim thispagerecords '當前頁記錄條數
dim recordcode '記錄序號
dim curpage '當前頁碼
dim pagesize
pagesize=10
pagesum=objres.PageCount
if Request.QueryString("page")=""then curpage=1 else curpage=Request.QueryString("page")
if cint(curpage)> cint(pagesum) then curpage=pagesum '轉換成整數格式時必須的,大量實驗已經證明
end if
%>
<% if not Request.QueryString("strsql")="" then %>
<form name=ConList method="post" action="ProjectTJ_EditList.asp?muldel=muldel&strsql=<%=server.URLEncode(strsql)%>&page=<%=curpage%>">
<% else %>
<form name=ConList method="post" action="../Project/ProjectTJ_EditList.asp">
<%
end if
%>
<input type="hidden" name="submitType">
<table width="100%" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td width="457"><img src="images/editlist_Project.gif" width="227" height="38"></td>
<td width="50">
<div align="center"></div>
</td>
<td width="50" align="center"> <a href="../Project/Project_Query.asp?type=TJ&query=query"><img src="../public/images/query.gif" width="24" height="18" border="0"><br>
<font color="#003399">查詢</font></a></td>
</tr>
</table>
<table width="100%" border="0" cellspacing="1" cellpadding="0" bordercolor="#0099FF" align="center" bgcolor="#006699">
<tr bordercolor="#0099FF" bgcolor="#6699CC">
<td width="29" height="20" align="center" bgcolor="#6699CC">
<div align="center"><font color="#FFFFFF">序號</font></div>
</td>
<td width="53" height="20">
<div align="center"><a href="ProjectTJ_EditList.asp?orderby=項目編碼&strsql=<%=server.URLEncode(strsql)%>&page=<%=curpage%>" class="menu">項目編碼</a></div>
</td>
<td width="151" height="20">
<div align="center"><a href="ProjectTJ_EditList.asp?orderby=項目名稱&strsql=<%=server.URLEncode(strsql)%>&page=<%=curpage%>" class="menu">項目名稱</a></div>
</td>
<td width="63" height="20"><a href="ProjectTJ_EditList.asp?orderby=申報時間&strsql=<%=server.URLEncode(strsql)%>&page=<%=curpage%>" class="menu">申報日期</a></td>
<td width="69" height="20"><a href="ProjectTJ_EditList.asp?orderby=項目類別名稱&strsql=<%=server.URLEncode(strsql)%>&page=<%=curpage%>" class="menu">項目類別</a></td>
<td width="102" height="20"><a href="ProjectTJ_EditList.asp?orderby=主持單位&strsql=<%=server.URLEncode(strsql)%>&page=<%=curpage%>" class="menu">主持單位</a></td>
<td width="30" height="20"><a href="ProjectTJ_EditList.asp?orderby=年度批次&strsql=<%=server.URLEncode(strsql)%>&page=<%=curpage%>" class="menu">年度批次</a></td>
<td width="50" height="20" align="center"><a href="ProjectTJ_EditList.asp?orderby=推薦標志&strsql=<%=server.URLEncode(strsql)%>&page=<%=curpage%>" class="menu">主管<br>
意見</a></td>
<td width="30" height="20"><a href="ProjectTJ_EditList.asp?orderby=項目進度&strsql=<%=server.URLEncode(strsql)%>&page=<%=curpage%>" class="menu">項目進度</a></td>
<td width="50" height="20" align="center"><a href="ProjectTJ_EditList.asp?orderby=進度狀況&strsql=<%=server.URLEncode(strsql)%>&page=<%=curpage%>" class="menu">進度<br>
狀況</a></td>
<td width="25" height="20"><font color="#FFFFFF">推薦</font></td>
<td width="30" height="20" align="center"><font color="#FFFFFF">查看<br>
意見</font></td>
</tr>
<%
if Request.QueryString("strsql")="" then Response.End
if objres.RecordCount >pagesize*curpage then thispagerecords=pagesize else thispagerecords=objres.RecordCount-pagesize*(curpage-1)
recordcode=10*(curpage-1)
if objres.RecordCount >0 then
objres.MoveFirst
objres.Move((curpage-1)*10)
else
%>
<tr bgcolor="#FFFFFF">
<td colspan="12">對不起,沒有符合要求的記錄! </td>
</tr>
<%
Response.End
end if
for i=1 to thispagerecords
recordcode=recordcode+1
%>
<tr bgcolor="#FFFFFF">
<td width="29" align="center">
<% =recordcode%>
</td>
<td width="53">
<% = objres.Fields("項目編碼").Value %>
</td>
<td width="151"> <a href="../Project/Project_edit1.asp?view=view&edit=edit&code=<% = objres.Fields("項目編碼").Value %>&name=<% = objres.Fields("項目名稱").Value %>&type=<%=objres.Fields ("項目類別").Value %>&strsql=<%=server.URLEncode(strsql)%>&page=<%=curpage%>" target="_blank" class=blank>
<% = objres.Fields("項目名稱").Value %>
</a></td>
<td width="63">
<% = objres.Fields("申報時間").Value %>
</td>
<td width="69">
<% = objres.Fields("項目類別名稱").Value %>
</td>
<td width="102">
<% = objres.Fields("主持單位").Value %>
</td>
<td width="30">
<% = objres.Fields("年度批次").Value %>
</td>
<td width="50" align="center">
<% if objres.Fields("推薦標志").Value ="Y" then response.write objres("主管部門推薦結果") else response.write "未推薦" end if%>
</td>
<td width="30">
<% = objres.Fields("項目進度").Value %>
</td>
<td width="50" align="center">
<% = objres.Fields("進度狀況").Value %>
</td>
<td width="25">
<div align="center"><a href="ProjectTJ_Edit.asp?Code=<%=objres("項目編碼")%>&strsql=<%=server.URLEncode (strsql)%>&page=<% =curpage%>"><img src="images/TuiJian.gif" width="20" height="20" border="0"></a></div>
</td>
<td width="30">
<%if objres("推薦標志")="Y" then %>
<a href="javascript:open1('<%=objres("項目編碼")%>');"><img src="../public/images/view.gif" width="20" height="17" border="0"></a>
<%end if%>
</td>
</tr>
<%
objres.MoveNext
next
%>
<tr bgcolor="#6699CC">
<td colspan="12" height="20">
<div align="right">
<%
if curpage>1 then Response.Write ("<a href="+"ProjectTJ_EditList.asp?page=1"+"&strsql="+server.URLEncode(strsql)+"> 首頁</a>"+" | ") else Response.Write "首頁 | "
if recordcode>pagesize then Response.Write ("<a href="+"ProjectTJ_EditList.asp?page="+cstr(curpage-1)+"&strsql="+server.URLEncode(strsql)+"> 上一頁</a>"+" | ") else Response.Write "上一頁 | "
if recordcode<objres.RecordCount then Response.Write ("<a href="+"ProjectTJ_EditList.asp?page="+cstr(curpage+1)+"&strsql="+server.URLEncode(strsql)+"> 下一頁</a>"+" | ") else Response.Write "下一頁 | "
if recordcode<objres.RecordCount then Response.Write ("<a href="+"ProjectTJ_EditList.asp?page="+cstr (pagesum)+"&strsql="+server.URLEncode(strsql)+"> 末頁</a>"+" ") else Response.Write "末頁 "
%>
第
<% =curpage %>
頁/共
<% =pagesum %>
頁/共
<% =objres.RecordCount %>
條記錄 </div>
</td>
</tr>
</table>
</form>
<br>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -