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

📄 am_fm_fdr.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=600>
<tr><td class=noborder><% MenuIndex %></td></tr>
</table>

<%
	MyDBConnect
	'delete steps
	f=Request.QueryString("fid")
	MeetingEnd1(f)
	strSQL="delete from t_flow_step where flow_id=" & Request.QueryString("fid")
	DBExecute strSQL
    
	'delete cur_step
	strSQL="delete from t_cur_step where flow_id=" & Request.QueryString("fid")
	DBExecute strSQL

	'delete template
	strSQL="delete from t_flow where flow_id=" & Request.QueryString("fid")
	DBExecute strSQL
%>
<p align=center>*******删除流程成功*********
<p align=center>
<a href=am_fm.asp>返  回</a>
<%	
	' Close Recordset

	DBDisconnect
%>

             
</body>
</html>

⌨️ 快捷键说明

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