ASP数据库更新问题

2025-01-18 21:00:11
推荐回答(2个)
回答1:

兄台呀..这里是ASP页面.别当成了JS来写...

ASP中不能用+来连接的..用&

rs_jsq2.open "update jsq set num="& num &" where id =1",conn,1,3

回答2:

where前需要空格,用&可以避免出错,要不也可以写成:
rs_jsq2.open "update jsq set num=" + cstr(num) +" where id =1",conn,1,3