【发布时间】:2011-10-06 00:23:48
【问题描述】:
这是我的 ASP:
sql="select * from empPac where empIdent='" & empIdent & "' and catalogIdent=" & catItem
Set rsSQL = Server.CreateObject ("ADODB.Recordset")
rsSQL.Open sql,strConnect
sql="update empPac set sizeChartIdent=" & newSize & " where empPacIdent=" & rsSQL("empPacIdent")
rsSQL.Execute(sql)
现在的问题是它抛出以下错误:
Object doesn't support this property or method: 'rsSQL.Execute'
我不知道为什么
【问题讨论】:
-
你好,sql注入漏洞
标签: sql asp-classic ado