lgmovie.asp
来自「网上流行的MOVE站点」· ASP 代码 · 共 35 行
ASP
35 行
<!--#include file="articleconn.asp"-->
<!--#include file="security.asp"-->
<%if session("flag")>1 then
response.write "<script>alert('您的操作权限不够!');history.back();</script>"
response.end
end if
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title></title>
<style>
body{font-size:9pt;line-height:140%}
</style>
</head>
<body>
<%
movieid=replace(request("selAnnounce")," ","")
if request("selAnnounce")="" then
response.write("<script>alert('请选择一个电影!');history.go(-1)</script>")
response.end
end if
if request("act")="删除" then
conn.execute("delete from learning where articleid in ("&movieid&")")
conn.execute("delete from movieurl where nameid in ('"&movieid&"')")
conn.close
set conn=nothing
response.redirect "manage.asp"
response.end
response.end
end if
%>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?