delsave.asp

来自「像数据库(SQL2000)中存取图像数据」· ASP 代码 · 共 15 行

ASP
15
字号
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="conn.asp"-->
<%
If Request.Form("del")<>""Then
sql="Delete From img Where ID in("&Request.Form("del")&")"
conn.Execute(sql)
del=trim(Request.Form("del"))
deltable="DROP table part"&del&""
conn.Execute(deltable)
%>
<script language="javascript">
alert("数据删除成功");
window.location.href="form.asp"
</script>
<% End If %>

⌨️ 快捷键说明

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