flashdown.asp

来自「教育管理系统」· ASP 代码 · 共 54 行

ASP
54
字号
<!--#include file="articleconn.asp"-->
<!--#include file="home1.asp"-->
<%
dim zhuid,typeid
zhuid = Request.QueryString("zhuid")
typeid = Request.QueryString("typeid")
id = Request.QueryString("id")
if zhuid="" then
Response.Write("错误参数")
Response.End
else
if id="" then
Response.Write("错误参数")
Response.End
else
set rs2=server.createobject("adodb.recordset")
sql2="select * from zhu where zhuid="&zhuid
rs2.open sql2,conn,1,1
zhu=rs2("zhu")
rs2.close
set rs3=server.createobject("adodb.recordset")
sql3="select * from type where typeid="&typeid
rs3.open sql3,conn,1,1
types=rs3("type")
rs3.close
set rs=server.createobject("adodb.recordset")
sql="select * from learning where articleid="&id
rs.open sql,conn,1,1

%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title><%=rs1("homes")%>=><%=rs1("home")%></title><link rel="stylesheet" type="text/css" href="css/style.css"><script language="javascript">
function popwin2(id)
{		window.open("review.asp?id="+id,"","height=500,width=550,resizable=yes,scrollbars=yes,status=no,toolbar=no,menubar=no,location=no");
}
</script>
<body marginwidth="0" leftmargin="4" bgcolor="#666666" topmargin="4" marginheight="0" text="#FFFFFF" >
<center>
  <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=4,0,2,0">
    <param name=movie value="3344520.asp?url=<%=rs("url")%>&amp;id=<%=rs("articleid")%>">
    <param name=quality value=high>
    <embed src="3344520.asp?url=<%=rs("url")%>&amp;id=<%=rs("articleid")%>" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash">
    </embed> 
  </object> 
</center>
</body></html>
<%end if
end if
rs1.close
set rs1=nothing
conn.close
set conn=nothing%>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?