请帮我看看这段ASP代码错在哪里,谢谢
<html><head><title>显示数据库记录</title></head><body><%myconn="driver={sql server};server=localhost;uid=cyj;pwd=123;database=aspuser" sqlselect="select * from staff"set myrecord=server.CreateObject("adodb.recordset")myrecord.open sqlselect,myconn %><table width="346" height="200" border="1"> <tr><%for i=0 to myrecord.fields.count-1 %><td><%myrecord(i).name %><%next %></td></tr><tr><% do while not myrecord.eoffor j=0 to myrecord.fields.count-1 %><td><%=myrecord(j)%></td><% nextmyrecord.movenext%></tr><%loopmyrecord.closeset myrecord=nothing%></table></body></html>