调试通过:
<!--#include file="../include/weburl.asp"-->
<!--#include file="../include/conn.asp"-->
<%
set rs=server.CreateObject("adodb.recordset")
rs.open "select top 1 webname,url from manager order by id desc",conn,1,1
if not rs.eof then
webname=rs("webname")
url=rs("url")
end if
rs.close
set rs=nothing
conn.close
set conn=nothing
top=""
top=top&"<html>"
top=top&"<head>"
top=top&"<meta http-equiv=""Content-Type"" content=""text/html; charset=gb2312"" />"
top=top&"<title>"&webname&"</title>"
top=top&"<link href="""&url&"/images/style.css"" rel=""stylesheet"" type=""text/css"">"
top=top&"</head>"
top=top&"<body topmargin=""0"" leftmargin=""0"">"
top=top&"<table width=""980"" border=""0"" align=""center"" cellpadding=""0"" cellspacing=""0"">"
top=top&" <tr>"
top=top&" <td width=""312""><a href="""&url&"""><img src="""&url&"/images/logo.gif"" width=""312"" height=""68"" border=""0""></a></td>"
top=top&" <td width=""499"" align=""center""><object classid=""clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"" codebase=""http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"" width=""470"" height=""62"">"
top=top&" <param name=""movie"" value=""images/abc.swf"" />"
top=top&" <param name=""quality"" value=""high"" />"
top=top&" <embed src=""images/abc.swf"" quality=""high"" pluginspage=""http://www.macromedia.com/go/getflashplayer"" type=""application/x-shockwave-flash"" width=""470"" height=""62""></embed>"
top=top&" </object></td>"
top=top&" <td width=""169"">"
top=top&" <div>"
top=top&" <img src="""&url&"/images/dot1.gif"" width=""3"" height=""3""> 站长资讯站长新闻关注<br>"
top=top&" <img src="""&url&"/images/dot1.gif"" width=""3"" height=""3""> DISCUZ!官方专题汇集<br>"
top=top&" <img src="""&url&"/images/dot1.gif"" width=""3"" height=""3""> 站长源码免费下载提供"
top=top&" </div>"
top=top&" </td>"
top=top&" </tr>"
top=top&"</table>"
%>
document.write('<%=top%>')