📄 del.asp
字号:
<!--#include file="../include/sqlstr.asp"-->
<!--#include file="../include/opendb.asp"-->
<html>
<head>
<title>无标题文档</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" href="../css/cc.css" type="text/css">
</head>
<%
id=request("id")
set conn=opendb()
'删除主流程表中记录
sql = "delete from a_liuchengbeifeng where id="&id
'删除流程受理表中记录
sql = sql & " delete from a_liucheng where liuchengbeifengid="&id
'删除流程受理环节记录表中的记录
sql = sql & " delete from a_control where liuchengid="&id
conn.Execute sql
%>
<body bgcolor="#FFFFFF" text="#000000">
<p> </p><table width="100%" border="0" cellspacing="0" cellpadding="0" align="left">
<tr>
<td>
<div align="center">
<p>您已经将任务删除</p>
<p><a href="javascript:history.go(-2)" class="cc">请您返回</a></p>
</div>
</td>
</tr>
</table>
</body>
</html>
<html></html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -