请问在这个位置如何添加链接代码
我想实现在点击留言的题目便可以跳转到相应页面的功能,我就不知道该如何正确添加了,不知道应该将<a href="XQYZ.asp?id=<%=rsX("ID")%>"***</a>填在哪个位置,或者该如何添加,既能实现重复出现10条记录,又能将每条记录链接到指定页面的两种功能。以下是有关题目的那个表格代码:
<table width="200" height="20" border="0" cellspacing="0" cellpadding="0">
<%
While ((Repeat4__numRows <> 0) AND (NOT rsY.EOF))
%>
<tr>
<td class="t31">
<%
if len(rsY("biaoti"))>10 then
Response.Write left(rsY("biaoti"),10)&"..."
else
Response.Write rsY("biaoti")
end if
%>
</td>
<!--健康知识部分(单元格)-->
</tr>
<%
Repeat4__index=Repeat4__index+1
Repeat4__numRows=Repeat4__numRows-1
rsY.MoveNext()
Wend
%>
</table>
谢谢!!