职业病体检噪声:asp错误,Microsoft VBScript 运行时错误 (0x800A000D)

来源:百度文库 编辑:神马品牌网 时间:2024/04/30 01:35:13
Microsoft VBScript 运行时错误 (0x800A000D)
类型不匹配: 'rs'
/mlm/1/888/alipay/return_Alipay_Notify.asp, 第 90 行

大侠帮忙解决下呀!

If mysign=Request.QueryString("sign") And ResponseTxt="true" Then

'判断支付状态,(文档中有支付枚举表,可供参考)
If Request.QueryString("trade_status")="WAIT_SELLER_SEND_GOODS" Then
'支付宝收到买家付款,请卖家发货 ,修改订单状态,发货等
set rst2=server.CreateObject("adodb.recordset")
rst2.Open "select * from style where style1='"& xh &"';",con
rs("access5")=1
rs.update
response.write "success"
End if

Else
response.write "fail"
End If
我想知道怎么解决,怎样才能更新它为1呢?

set rst2=server.CreateObject("adodb.recordset")
rst2.Open "select * from style where style1='"& xh &"';",con
rst2("access5")=1
rst2.update
rst2.close
con.close

你这个rs是什么
recordset如果是他的话是不能负值的