| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 381 人关注过本帖
标题:网页程序问题求助!
只看楼主 加入收藏
tvro
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2006-10-26
收藏
 问题点数:0 回复次数:2 
网页程序问题求助!

有一个生成 html 的asp程序 里面有广告,请问让他生成的html文件里面不含广告(广告代码:<iframe src='http://pub.lele.com/lib/20.html?a=113951&b=0&c=39&d=855&e=0&f=lele' scrolling='no' frameborder='0' width=760 height=138></iframe>)
creat-html.asp代码如下
<!--#include file="mdb.asp"-->
<%
if session("adminlogin")<>sessionvar then
Response.Write("<script language=javascript>alert('你尚未登录,或者超时了!请重新登录');this.location.href='admin/index.asp';</script>")
Response.End
End if
set rs=server.createobject("adodb.recordset")
rs.open "select * from title",conn,1,3
site=rs("site")
siteurl=rs("siteurl")
email=rs("email")
Powered=rs("Powered")
Copyright=rs("Copyright")
rs.close
classid=request("classid")
rs.open "select * from feilei where classid="&classid,conn,1,3
classname=rs("classname")
topclass=rs("topclass")
rs.close
dim wstr,fso,fw
set fr=server.createobject("adodb.recordset")
fr.open "select * from template where id=1",conn,1,3
wstr=fr("template")
fr.close
set fr=nothing
dim rstr,xunxu
xunxu="><a class=a href='HOTwz0"&classid&".htm'>" & classname & "</a>"
while topclass<>0
rs.open "select * from feilei where classid="&topclass,conn,1,3
if not rs.eof then
xunxu="><a class=a href='HOTwz0" & rs("classid") & ".htm'>" & rs("classname") & "</a>" & xunxu
topclass=rs("topclass")
end if
rs.close
wend
wstr=replace(wstr,"<{{sc1}}>",xunxu)
rs.open "select * from feilei where topclass="&classid,conn,1,3
jishu=1
if rs.eof then
rstr=rstr&""
end if
while not rs.eof
if jishu=1 or jishu mod 7 = 1 then
rstr=rstr & "<tr><td width='150' height='20' align=center><a class=a href='HOTwz0"&rs("classid")&".htm'>["&rs("classname")&"]</a></td>"
else
rstr=rstr & "<td width='150' height='20' align=center><a class=a href='HOTwz0"&rs("classid")&".htm'>["&rs("classname")&"]</a></td>"
end if
if jishu mod 7 =0 then rstr=rstr & "</tr>"
jishu=jishu+1
rs.movenext
wend
jishu=jishu-1
if jishu mod 7 <> 0 then
for i= 1 to 7-(jishu mod 7)
rstr=rstr & "<td width='100'>&nbsp;</td>"
if i = 7-(jishu mod 7) then rstr=rstr & "</tr>"
next
end if
rs.close
wstr=replace(wstr,"<{{sc2}}>",rstr)
rstr=empay
Copyright=Powered&Copyright
rs.open "select * from detail where verity=1 and classid="&classid&" order by topid desc,id",conn,1,3
jishu=1
noooo=1
while not rs.eof
if jishu=1 or jishu mod 4 = 1 then
noooo=noooo+1
if noooo mod 2=1 then
bgcolor="#FFFFFF"
else
bgcolor="#F7F7F7"
end if
if rs("recommend")=1 then
rstr=rstr & "<tr bgColor="&bgcolor&"><td width='25%' height='25'>&nbsp;&nbsp;<a class=a href='"&rs("url")&"' target='_blank'>"&rs("title")&"&nbsp;<font color=#C60A00>荐</font></a></td>"
else
rstr=rstr & "<tr bgColor="&bgcolor&"><td width='25%' height='25'>&nbsp;&nbsp;<a class=a href='"&rs("url")&"' target='_blank'>"&rs("title")&"</a></td>"
end if
else
if rs("recommend")=1 then
rstr=rstr & "<td width='25%' height='20'>&nbsp;&nbsp;<a class=a href='"&rs("url")&"' target='_blank'>"&rs("title")&"&nbsp;<font color=#C60A00>荐</font></a></td>"
else
rstr=rstr & "<td width='25%' height='20'>&nbsp;&nbsp;<a class=a href='"&rs("url")&"' target='_blank'>"&rs("title")&"</a></td>"
end if
end if
if jishu mod 4 =0 then rstr=rstr & "</tr>"
jishu=jishu+1
rs.movenext
wend
jishu=jishu-1
if jishu mod 4 <> 0 then
for i= 1 to 4-(jishu mod 4)
rstr=rstr & "<td width='25%'>&nbsp;</td>"
if i = 4-(jishu mod 4) then rstr=rstr & "</tr>"
next
end if
rs.close
wstr=replace(wstr,"<{{sc3}}>",rstr)
wstr=replace(wstr,"<{{classname}}>",classname)
wstr=replace(wstr,"<{{site}}>",site)
wstr=replace(wstr,"<{{siteurl}}>",siteurl)
wstr=replace(wstr,"<{{email}}>",email)
wstr=replace(wstr,"<{{Copyright}}>",Copyright)
wstr=replace(wstr,"<{{creattime}}>",date())
Set fso=Server.CreateObject("Scripting.FileSystemObject")
set fw=fso.createtextfile(server.mappath("2006/HOTwz0"&classid&".htm"),true)
fw.writeline wstr
fw.close
set rs=nothing
set fso=nothing
response.write "ok"
%>

搜索更多相关主题的帖子: 网页 
2006-10-26 13:52
islet
Rank: 12Rank: 12Rank: 12
等 级:贵宾
威 望:89
帖 子:6548
专家分:0
注 册:2005-1-28
收藏
得分:0 
把代码replace掉
2006-10-26 14:19
tvro
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2006-10-26
收藏
得分:0 
能说详细一点吗? 把哪段代码替换了
我还是新手
谢谢
2006-10-26 19:32
快速回复:网页程序问题求助!
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.023197 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved