[求助]十天学会ASP第八天出问题了!
请各位高手指点迷津,我在运行文件时出现在了如下问题:Microsoft VBScript 运行时错误 (0x800A000D)
/biaodan8.asp, 第 19 行
Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)
GET /biaodan8.asp
源程序如下:
id=request.querystring("id")
if id<>"" then
exec="select * from guestbook where id="&id
set rs=server.createobject("adodb.recordset")
rs.open exec,conn,1,1
end if
%>
<form name="form1" method="post" action="modifysave.asp">
<table width="748" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>aa</td>
<td>bb</td>
</tr>
<tr>
<td>
<input type="text" name="aa" value="<%=rs(aa)%>">
</td>
<td>
<input type="text" name="bb" value="<%=rs("bb")%>">
<input type="submit" name="Submit" value="提交">
<input type="hidden" name="id" value="<%=request.querystring("id")%>">
</td>
</tr>
</table>
</form>
<%
rs.close
set rs=nothing
conn.close
set conn=nothing
%>