product_del_deal.asp
来自「建造工业系统所需的SQL源代码」· ASP 代码 · 共 13 行
ASP
13 行
<!--#include file="Conn/Conn.asp"-->
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<%
If Request.Form("DelID")<>"" Then
sql="Delete From tb_products Where ID in( "&Request.Form("DelID")&")"
conn.Execute(sql)
%>
<script language="javascript">
alert("数据删除成功!");
window.location.href="product.asp";
</script>
<% End If%>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?