⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 am_om_su.asp

📁 物业管理和办公自动化系统
💻 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>

<%
	MyDBConnect
	' Update step to up step
	strSQL="update t_cur_step set cur_step=cur_step-1"
	strSQL=strSQL & " where flow_id=" & Request.QueryString("fid")
	DBExecute strSQL

	'output
	strSQL="select cur_step from t_cur_step where flow_id=" & Request.QueryString("fid")
	DBQuery(strSQL)


%>
<br>
<p align=center>********成功转入上一步*************<br>
<table cellspacing=0 cellpadding=0 border=1 width=400 align=center>
<tr><td class=tblTitle>转 入 上 一 步 结 果</td></tr>
<tr height=50px><td align=center>当前的步骤序号为<b>第<%=oRs("cur_step")%>步</b></td></tr>
</table>
<%
	fid=Request.QueryString("fid")
	FlowNewTask fid,0
%>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -