asp新闻用iframe调用

来源:百度知道 编辑:UC知道 时间:2024/07/06 23:05:32
制作个新闻列表:<a href="zixun2.asp?id=<%=rs("id")%>" 调用zixun.asp的新闻,但是zixun.asp里我用到iframe,新闻是放到这里面来的。

zixun.asp里的iframe代码
<iframe frameborder=0 style="scroll-face-color:#ff0000" name="newshow"
src="info2.asp?id=<%=("id")%>" BODER="0" scrolling="none" width="710" height="450">
</iframe>
info2.asp里是具体内容,有标题和正文

没循环啊

直接从数据库里读不是更好,如果你想用这种方法的话。
你可以用循环来实现读取多条新闻

<a href="zixun2.asp?id=<%=rs("id")%>" target="newshow">

info2.asp是个列表页么?在这里面写循环。
<%while not rs.eof%>
<a href=""><%=rs("title")%></a>
<%
rs.movenext
Wend
%>