主题:  帮忙,看看这个程序那里出现了问题!

goby2008

职务:普通成员
等级:1
金币:0.0
发贴:26
#12005/9/23 13:19:19
现在这个程序就是这样子,凡是传过来的数据是0的,就不能更改,是1的,更新了为0,就不能改为1了,真奇怪!高手们帮我看看 。

<!--#include file="conn.asp"-->
<%
Dim passedid,pass
passedid=request("id"
pass=request("wi"
if pass<>"1" then
sql = "update liu set passed='1' where ID = "&passedid
conn.execute(sql)
else
sql = "update liu set passed='0' where ID = "&passedid
conn.execute(sql)
end if
conn.close()
set conn = nothing
response.redirect "a.asp"
%>



沉默是金

职务:普通成员
等级:6
金币:11.2
发贴:4357
#22005/9/23 17:13:45
输入传过来的数据和SQL语句检查一下


难人一个……

vampirex

职务:普通成员
等级:1
金币:0.0
发贴:26
#32005/10/3 9:10:07


更新前response.write pass

看看PASS的值是不是传递过来了