📄 am_fm_sd.asp
字号:
<!--#INCLUDE FILE="z_common.asp"-->
<html>
<head>
<title>流程步骤删除</title>
<style type="text/css">
<!-- @import url(../common.css); -->
</style>
</head>
<body>
<p>
<table cellspacing=0 cellpadding=0 align=center border=0 width=400>
<tr><td class=noborder><% MenuIndex %></td></tr>
</table>
<p>
<table cellspacing=0 cellpadding=0 border=1 align=center width=400>
<tr align=center>
<td colspan=4 class=tblTitle>删 除 流 程 步 骤</td>
</tr>
<tr align=center>
<td class=tdHead>步骤序号</td>
<td class=tdHead>审批人</td>
<td class=tdHead>操作</td>
<td class=tdHead>描述</td>
</tr>
<%
MyDBConnect
'decide could or not delete
strSQL="select cur_step from t_cur_step where flow_id=" & Request.QueryString("fid")
DBQuery(strSQL)
i=oRs("cur_step")
j=Request.QueryString("sid")
'response.write(oRs("cur_step") & "+" & Request.QueryString("sid"))
If CInt(i) >= CInt(j) Then
'response.write(">=")
'response.end
response.redirect "../docmgr/my_error_page.asp?eid=3"
End If
'go on
strSQL="select * from t_flow_step a,v_user_account b,t_step_operation c"
strSQL=strSQL & " where a.step_op_person=b.account_id "
strSQL=strSQL & " and a.step_op_id=c.operation_id "
strSQL=strSQL & " and flow_id=" & Request.QueryString("fid")
strSQL=strSQL & " and step_no=" & Request.QueryString("sid")
DBQuery(strSQL)
Response.Write("<tr align=center>")
Response.Write("<td>" & oRs("step_no")&"</td>")
Response.Write("<td>" & oRs("account_name")&"</td>")
Response.Write("<td>" & oRs("operation_name")&"</td>")
Response.Write("<td>" & oRs("step_desc")&"</td>")
Response.Write("</tr>")
DBEndQuery
%>
</table>
<p align=center><a href=am_fm_sdr.asp?fid=<%=Request.QueryString("fid")%>&sid=<%=Request.QueryString("sid")%>>
<img border=0 src=image/Remove.gif alt="确认删除流程步骤">确认删除</a>
<a href=javascript:history.go(-1)>取消删除</a>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -