关于ASP?后面的问题
http://www.bc-cn.net/bbs/post.asp?action=new&boardid=10象这个地址,我点他就带我进一个网页,而我点
http://www.bc-cn.net/bbs/post.asp?action=new&boardid=11
他就可以进另外一个网页,这是为什么
我也作了个超连接(红字部分),可为什么总连在固定的那一个网页上,为什么呢?想不明白,那位可以给我讲讲,我在此先谢了^_^
<!--#include file="conn.asp"-->
<%
set zhutlqrs=server.CreateObject("adodb.recordset")
zhutlqrs.open"select * from zhutlq",conn,1,1
do while not zhutlqrs.eof
%>
<tr>
<td width="83" height="30" valign="top"><table width="100%" border="0" cellpadding="0" cellspacing="0">
<!--DWLayoutTable-->
<tr>
<td width="83" height="30" valign="top"><%=zhutlqrs("status")%></td>
</tr>
</table></td>
<td width="560" valign="top"><table width="100%" border="0" cellpadding="0" cellspacing="0">
<!--DWLayoutTable-->
<tr>
<td width="560" height="30" valign="top"><a href='tlq.asp?boardid=<%=zhutlqrs("boardid")%>'><%=zhutlqrs("tlqname")%></a></td>
</tr>
</table></td>
<td width="137" valign="top"><table width="100%" border="0" cellpadding="0" cellspacing="0">
<!--DWLayoutTable-->
<tr>
<td width="137" height="30" valign="top"><%=zhutlqrs("post")%></td>
</tr>
</table></td>
</tr>
<%
zhutlqrs.movenext
loop
zhutlqrs.close
set zhutlqrs=nothing
%>