gmovie.asp
资源名称:qnmov30.rar [点击查看]
上传用户:qyswxdl
上传日期:2013-06-01
资源大小:1373k
文件大小:1k
源码类别:
家庭/个人应用
开发平台:
ASP/ASPX
- <!--#include file="../checkpost.asp"-->
- <!--#include file="articleconn.asp"-->
- <!--#include file="security.asp"-->
- <%
- if session("flag")>1 then
- response.write "<br><p align=center>您没有操作的权限</p>"
- 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?typeid="&request("typeid")&""
- response.end
- elseif request("act")="选定生成" then
- 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>"
- response.write("<script>alert('成功生成选定页面,点击[确定]返回');history.go(-1)</script>")
- response.end
- end if
- %>