if session("flag")>1 then
response.write "您没有操作的权限"
response.end
end if
%>
body{font-size:9pt;line-height:140%}
movieid=replace(request("selAnnounce")," ","")
if request("selAnnounce")="" then
response.write("alert('请选择一个电影!');history.go(-1)")
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?typeid="&request("typeid")&""
response.end
elseif request("act")="选定生成" then
response.write""
response.write("alert('成功生成选定页面,点击[确定]返回');history.go(-1)")
response.end
end if
%>