请您帮忙看看,怎么老是出问题呢?好郁闷哦~~`````````
提示说:“
ADODB.Field (0x80020009)
BOF 或 EOF 中有一个是“真”,或者当前的记录已被删除,所需的操作要求一个当前的记录。
/sos/search2.asp ”
到底问题出在了什么地方?
代码如下:
<!--#include file="conn.asp"-->
<%
sub_number=trim(request.Form("sub_number"))
set rs=server.CreateObject("adodb.recordset")
sql="select * from basket where sub_number='"&sub_number&"' order by basket_id DESC "
rs.open sql,conn,3,3
if rs("sub_number")<>sub_number then
response.write "没有此订单"
response.end
else
%>
<html>
<body>
<table width="731" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="731"><%=rs("sub_number")%></td>
</tr>
</table>
<table width="731" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="195">商品名称</td>
<td width="195">折扣价格</td>
<td width="139">数量</td>
<td width="64">金额</td>
<td width="138"> </td>
</tr>
<% do while not rs.eof%>
<tr>
<td><%=rs("pro_mingcheng")%></td>
<td><%=rs("pro2")%></td>
<td><%=rs("pro3")%></td>
<td><%=rs("pro4")%></td>
</tr>
<%rs.movenext
loop
%>
</table>
<table width="731" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="328"> </td>
<td width="403">总金额(产品金额+配送费用)=<%=rs("cash")%></td>
</tr>
</table>
</body>
</html>
<%end if%>