sp25175_del.asp
来自「1.简单的页面加密」· ASP 代码 · 共 19 行
ASP
19 行
<!--#include file="conn.asp"-->
<%
'id=request.querystring("id")
booktypeid=request.querystring("booktypeid")
if booktypeid<>"" then
set rs=server.createobject("adodb.recordset")
sql="delete * from booktype where booktypeid="&booktypeid
rs.open sql,db,1,3
db.execute(sql)
response.redirect "sp25175_modify.asp"
end if
%>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?