第一行加上一个: on error resume next conn.execute(sql_upd) 下面加上: if err.number<>0 then response.write(err.description) response.write("
"&sql_upd) response.end end if 然后运行程序,看详细错误提示信息,应该能找出问题所在。呵。updat...
站上三线:=ref(c,1)ma(c,5) and c>ma(c,10) and c>ma(c,21) 错误位置在:ref(c,1)ma(c,5)少了一个运算符号:> 或 < 或=,至于哪个才是正确,要看你的要求了,不过,按原公式来看,属于大于号的多点,改正如下:站上三线:=ref(c,1)>ma(c,5) and c>ma(c,10) and c>ma(...