帮我看看,哪里错了
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%><!--#include file="../inc/conn.asp"-->
<%
sql="select * from ad_music_class"
Set rs= Server.CreateObject("ADODB.RecordSet")
rs.Open sql,conn,1,3
%>
<body>
<form id="form1" name="form1" method="post" action="">
<table width="376" border="1" align="center">
<tr>
<td><div align="right">音乐类别:</div></td>
<%
do while not rs.eof
%>
<td><label>
<select name="musicclass" id="musicclass" value="<%=rs("user_music_class")%>"><%=rs("user_misic_class")%>
</select>
</label></td>
<%
rs.movenext
loop
%>
</tr>
<td colspan="2"><div align="center">
<label>
<input type="submit" name="Submit" value="提交">
</label>
<label>
<input type="reset" name="Submit2" value="重置">
</label>
</div></td>
</tr>
</table>
</form>
看看哪里错了