gmovie.asp
上传用户:qyswxdl
上传日期:2013-06-01
资源大小:1373k
文件大小:1k
源码类别:

家庭/个人应用

开发平台:

ASP/ASPX

  1. <!--#include file="../checkpost.asp"-->
  2. <!--#include file="articleconn.asp"-->
  3. <!--#include file="security.asp"-->
  4. <%
  5. if session("flag")>1 then
  6. response.write "<br><p align=center>您没有操作的权限</p>"
  7. response.end
  8. end if
  9. %>
  10. <html>
  11. <head>
  12. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  13. <title></title>
  14. <style>
  15. body{font-size:9pt;line-height:140%} 
  16. </style>
  17. </head>
  18. <body>
  19. <%
  20. movieid=replace(request("selAnnounce")," ","")
  21. if request("selAnnounce")="" then
  22. response.write("<script>alert('请选择一个电影!');history.go(-1)</script>")
  23. response.end
  24. end if
  25. if request("act")="删除" then
  26. conn.execute("delete from learning where articleid in ("&movieid&")")
  27. conn.execute("delete from movieurl where nameid in ('"&movieid&"')")
  28. conn.close
  29. set conn=nothing
  30. response.redirect "manage.asp?typeid="&request("typeid")&""
  31. response.end
  32. elseif request("act")="选定生成" then
  33. response.write"<IFRAME SRC=makesoft.asp?id="&movieid&" WIDTH=100% HEIGHT=35 MARGINWIDTH=0 MARGINHEIGHT=0 HSPACE=0 VSPACE=0 FRAMEBORDER=0 SCROLLING=no></IFRAME>"
  34. response.write("<script>alert('成功生成选定页面,点击[确定]返回');history.go(-1)</script>")
  35. response.end
  36. end if
  37. %>