asp实现从两个表中联合查询的错误,急请高手??
<!--#include file="conn.asp" --><table ><%
set rs=server.CreateObject("adodb.recordset")
sql="select * from jxj where xh in (select xh from student )" '一个学生表student,另一个是奖学金表jxj,两个表中有共同的字段xh
rs.open sql,conn,1,1
%>
<%do while not rs.eof%>
<tr>
<td>
<li><%=rs("xh")%><%=rs("xm")%></li>'
<%
rs.movenext
loop
%>
</td>
</tr>
</table>
<%
rs.close
set rs=nothing
conn.close
set conn=nothing
%>
为什么他总是输出不了错误,也没提示,页面缓冲很慢,一直没有结果!最后只能脚本运行时间过长!谢谢高手们!