[求助]做新闻发布系统遇到的问题
<%set rs5=server.createobject("adodb.recordset")
sql5 = "select top 5 biaoti, data, times from content where tuijian=1"
rs5.open sql5,conn,1,1
%>
<table width="600" border="1" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="871" height="18"><table width="600" border="0" cellpadding="0" cellspacing="0" bgcolor="#EBEBEB">
<tr>
<td width="409" height="18">推荐新闻</td>
<td width="91"><div align="right" class="STYLE2">更多新闻</div></td>
</tr>
</table></td>
</tr>
<tr>
<td height="56"><table width="600" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="600" height="54"><%do while not rs5.eof%>
<table width="600" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="329"><%=rs5("biaoti")%></td>
<td width="210"><%=rs5("data")%></td>
<td width="133">访问次数:<%=rs5("times")%></td>
</tr>
</table>
<%
rs5.movenext
loop
if rs5.eof and rs5.bof then
response.write "没有相关文章"
end if
rs5.close
set rs5=nothing
%>
</td>
</tr>
</table></td>
</tr>
</table>
我做的是新闻发布系统
这是我其中的一段推荐新闻的代码
我把tuijian=1改成tuijian=0的话。。他会显示出没推荐的新闻。。
但是改成1的话。他显示没有相关的文章。。
我把
if rs5.eof and rs5.bof then
response.write "没有相关文章"
end if
这段代码去掉了后。表格里显示没有任何东西。。是空白的~
有人知道这是为什么吗??
还有个是想问下。点击一条新闻,他的点击次数会增加1,相当与一个计数器。。但是我在网上找到的都是访问这个网页的计数器。。
也请高手指教下。。谢谢了~~
上面的问题基本解决了。现在又来一个问题。
就是首页里的每条记录的连接的代码:<a href="show.asp?id=<%=rs5("content_ID")%>" target="_blank">
这样的话show这个页面的代码怎么写?
才能让show页面里的内容对上首页里的记录(有点对号入座的意思)
[此贴子已经被作者于2007-1-8 19:20:04编辑过]