[求助]查找数据库并且按照要求显示一个标记的代码
<%pr_type=request("type")'比如我现在传递过来是11
set rs=conn.Execute("select id,title From newscata where leiid='10' order by id")
do while not rs.eof
pr_id=rs("id")'而数据库里面也有这个等于11的ID号
%>
<tr>
<td height="21"><%=pr_id%>-<%=rs("title")%>-<%=pr_type%><%
if rs("id")=pr_type then'这里我想当找到ID号等于11的时候就显示一个标记。
response.Write("aaaaaaaa")
end if
%></td>
</tr>
<%
rs.movenext
loop
set rs=nothing
%>
这样写代码就是不能够显示,但是把红色部门写成if rs("id")="11" then
哪个“aaaaaaa”就显示了!这里的代码该怎么写啊!