📄 delete.asp
字号:
<!--#include file="../includes/houseKeep.asp"-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>WebOffice</title>
</head>
<body>
<%
call insureID()
if session("POSITION_ID")<>4 then
call noRight()
end if
if request("GoOn") <> "YES" then
response.write "本次操作将从数据库删除记录,并且不能再恢复! <a href=""Browse.asp""><<取消操作</a> " _
&"<a href=""delete.asp?GoOn=YES"">继续操作>></a>"
else
dim conn,rs,sql
dim DECISION_ID
dim Content
DECISION_ID=request("DECISION_ID")
sql="DELETE * FROM DeptDecision WHERE DECISION_ID = "&DECISION_ID
call openDB()
conn.execute(sql)
response.write "删除成功! <a href=""Browse.asp""><<返回</a>"
end if
call closeDB()
%>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -