请问这是什么问题??帮帮我~~~在线等~
<table width="96%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="41%" height="38" >头像:
<select name="face" class="login" size=1 onChange="document.images['face'].src=options[selectedIndex].value;">
<%
dim i
set rst=server.createobject("ADODB.Recordset")
strSQL="select image from face"
rst.open strSQL,conn,3,1
if not(rst.bof and rst.eof) then
do while not rst.eof
%>
<option value="<%=rst("image")%>"><%=rst("image")%></option>
<%
rst.movenext
loop
end if
%>
</select>
</td>
<td width="59%" rowspan="2" align="center">
<img id="face" src="<%=rst("image")%>" ></td>
</tr>
<tr>
<td height="27" scope="row" ></td>
</tr>
</table>
错误类型:
ADODB.Field (0x80020009)
/changeface.asp
错误:BOF 或 EOF 中有一个是“真”,或者当前的记录已被删除,所需的操作要求一个当前的记录。