asp怎样才能将留言对号显示!
我做了个留言簿,可以将留言列表的字段显示出来,页面名为liebiao.asp这个页面我已经解决。可是
在留言列表中我将留言标题上加入了链接,进入想要看的留言里面,也就是该留言人留言的全部,页面名为xsly.asp
可是无论点哪个标题链接,xsly.asp页面的留言内容始终是第一条留言记录
我怎样让他对号呢?????
我的xsly.asp页面的代码是:
<!--#include file="conn.asp"-->
<style type="text/css">
<!--
table {
font-size: 9pt;
text-decoration: none;
border: 1px solid #000000;
}
body {
background-image: url();
}
.STYLE2 {color: #FF0000}
.STYLE3 {color: #999999}
.STYLE4 {color: #000000}
-->
</style>
<title>显示页面</title>
<%
set rs=server.createobject("adodb.recordset")
sql="select * from Feedback order by id desc"
rs.open sql,conn,1,1
%>
<table width="500" border="0" align="center" cellpadding="5" cellspacing="0">
<tr align="center">
<td colspan="3"><strong><span class="STYLE4">标题</span><font color="#000000">:<%=rs("title")%></font></strong></td>
</tr>
<tr align="center">
<td colspan="3"><span class="STYLE2"><span class="STYLE3">留言时间:<%=rs("addtime")%></span></span><span class="STYLE2"><span class="STYLE3"> 留言人:</span><%=rs("linkman")%></span><br>
<hr width="88%" size="1"></td>
</tr>
<tr>
<td colspan="3"><table width="88%" border="0" align="center" cellspacing="8" style="word-break:break-all">
<tr>
<td><%=rs("comtont")%></td>
</tr>
</table>
<div align="center"><br>
<input type="button" name="Submit" value="返回" onClick="javascritp:window.close()">
</div></td>
</tr>
</table>
<%
rs.close
set rs=nothing
conn.close
set conn=nothing
%>
<div align="center"><br>
</div>
谢谢高手,我是刚学asp的