📄 sign1.asp.bak
字号:
<%option explicit
Response.CacheControl = "no-cache"
Response.AddHeader "Pragma", "no-cache"
Response.Expires = -1
%>
<!-- #include file="../include/config.inc" -->
<!-- #include file="../include/common.inc" -->
<!-- #include file="../include/debug.inc" -->
<!-- #include file="../include/db.inc" -->
<!-- #include file="../include/date.inc" -->
<!-- #include file="../include/datahandle.inc" -->
<!-- #include file="../include/recordlist.inc" -->
<!-- #include file="../include/security.inc" -->
<!-- #include file="../common/commonpage.inc" -->
<!-- #include file="../hr/hr.inc" -->
<%
'call CheckSecurity()
dim fid : fid = GetParam("fid")
if IsEmpty(fid) then
Response.Clear()
Server.Transfer("sign.asp")
Response.End
end if
dim crs
set crs = New CRecordset
dim strSQL
' Output Result
strSQL="select flow_id,template_id, flow_name,template_name,stat_name,account_name,flow_file,flow_urge_way"
strSQL=strSQL & " from t_flow a,t_flow_template b,v_user_account c,t_flow_stat d"
strSQL=strSQL & " where a.flow_template_id=b.template_id "
strSQL=strSQL & " and a.flow_author_id=c.account_id "
strSQL=strSQL & " and a.flow_stat=d.stat_id"
strSQL=strSQL & " and a.flow_id=" & Request.QueryString("fid")
dim rs : set rs = crs.open(dbLocal,strSQL)
Dim flow_name,stat_name,template_name,account_name,flow_urge_way
flow_name = crs.GetValue("flow_name")
stat_name = crs.GetValue("stat_name")
account_name = crs.GetValue("account_name")
template_name = crs.GetValue("template_name")
flow_urge_way = crs.GetValue("flow_urge_way")
If flow_urge_way="" Then
flow_urge_way = "<font color=grey>(暂无)</font>"
End If
%>
<html>
<head>
<title>上海信息大楼 Shanghai Information Tower</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" href="../common/common.css" type="text/css">
<center>
<table cellspacing=0 cellpadding=0 align=center border=0 width=300>
<tr height=60><td class=tblTitle colspan=3 ><marquee behavior=alternat>当 前 审 批 流 程 信 息</marquee></td></tr>
<tr align=left height=40>
<td width=100 >流程名称</td>
<td >:</td>
<td align=center><font color=green><%=flow_name%></font></td>
</tr>
<tr align=left height=40>
<td width=100 >流程当前状态</td>
<td >:</td>
<td align=center><font color=green><%=stat_name%></font></td>
</tr>
<tr align=left height=40>
<td width=100 >流程模板</td>
<td >:</td>
<td align=center><font color=green><%=template_name%></font></td>
</tr>
<tr align=left height=40>
<td width=100>创建者</td>
<td >:</td>
<td align=center><font color=green><%=account_name%></font></td>
</tr>
<tr align=left height=40>
<td width=100 >催办方法</td>
<td >:</td>
<td align=center><font color=green><%=flow_urge_way%></font></td>
</tr>
</table>
</center>
<br>
<br>
<% crs.Close() %>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -