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

家庭/个人应用

开发平台:

ASP/ASPX

  1. <!--#include file="articleconn.asp"-->
  2. <!--#include file="inc/config.asp"-->
  3. <%
  4. urlid=request("id1")
  5. articleid=request("id2")
  6. if articleid="" or urlid="" then
  7.    response.redirect "error.asp?id=4"
  8.    response.end
  9.    end if
  10. set rs=server.createobject("adodb.recordset") 
  11.    sql="select * from learning where articleid="&articleid 
  12.    rs.open sql,conn,1,1 
  13. if rs("movietype")="rm" then
  14. response.redirect "open1.asp?film1="&urlid&"&film2="&articleid&""
  15. elseif rs("movietype")="md" then
  16. response.redirect "open.asp?film1="&urlid&"&film2="&articleid&""
  17.    end if
  18. %>