[求助]这样的条件表达式错在哪里?
<% dim yesyes="yes"
set rst=server.createobject("adodb.recordset")
sql="select top 6 * from news where fl='"&s&"' and tp="&yes
rst.open sql,conn,1,1
if rst.EOF then
response.write "没有你要的内容:"
else
%>
<a href="index.asp">你要显示的内容:</a>|
<%do while NOT rst.EOF%><a href="index.asp?fl=<%=rst("fl")%>"><%=rst("fl")%></a>|<%
rst.MoveNext
loop
end if
rst.close
set rst=nothing
%>
在表中查询要同时满足字段fl与tp的记录,其中tp字段要么为空,要么为"yes"(字符型)。可是每次tp不等于"yes"记录也显示出来了。请各位帮忙解决。谢谢!