del.asp
来自「手机网址导航网站手机网址导航网站手机网址导航网站」· ASP 代码 · 共 22 行
ASP
22 行
<!--#include file="conn.asp"-->
<%
if session("logined") <> "true" then
response.Redirect("login.asp")
else
if request.Form("action")="deldown" then
conn.execute("delete from music where id=" & request.Form("id"))
response.Write("删除成功")
conn.close
Set conn=nothing
end if
if request.Form("action")="delclass" then
conn.execute("delete from class where id=" & request.Form("id"))
response.Write("删除成功")
conn.close
Set conn=nothing
end if
end if
%>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?