求助 ASP文件

CLASSID 为 分类ID编号

在分类表中 newclassid 为分类ID class 分类名称

NEWS表问资源表
我调用资源的时候 <%=rs("classid")%> 只显示 分类的ID号码 请问下怎么才能现实
分类的名称文字? 请高手帮忙下 谢谢


<%
i=0
NewList=8
set rs=server.createobject("adodb.recordset")
sql="SELECT * FROM news order by id desc"
rs.Open sql,conn,1,1
do while not rs.eof
i=i+1
%>

<table width=100% height=21 border=0 align=center cellpadding=0 cellspacing=0 background=Images/index/bg1.gif>
<tr>
<td class=td12white>·[<%=rs("classid")%>]</td> <td>
<%=rs("title")%> </A>
</TD>
</tr>
<%
if i>=NewList then exit do
rs.movenext
loop
rs.close%>
</table>
</TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>