asp一个简单的if语句问题,在线等
这是一个数据库更新代码id=request.querystring("id")zzt=request.querystring("zzt")ifzzt=1thenconn....
这是一个数据库更新代码
id=request.querystring("id")
zzt=request.querystring("zzt")
if zzt=1 then conn.Execute "update [myshua] set zt=0 where id="&id
if zzt=0 then conn.Execute "update [myshua] set zt=1 where id="&id
response.redirect "main.asp"
为什么从上页提交过来的参数ID和ZZT能接收到.但这个IF语句好像不起作用,如果去掉IF语句,那么数据库能更新.加上这个IF后数据库就更新不了了.什么问题.
接收页整个代码就是这样,如果加了IF就不行.不加IF直接更新没有问题
我还是第一次遇到这个问题
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>一流万能XX系统</title>
</head>
<!--#include file="conn.asp"-->
<body>
<%
id=request.querystring("id")
zzt=request.querystring("zzt")
if zzt="1" then conn.Execute "update [myshua] set zt=0 where id="&id
if zzt="0" then conn.Execute "update [myshua] set zt=1 where id="&id
'response.redirect "main.asp"
response.write zzt & " / " & IsNumeric(zzt) & " / " & Len(zzt) : response.end
%>
</body></html> 展开
id=request.querystring("id")
zzt=request.querystring("zzt")
if zzt=1 then conn.Execute "update [myshua] set zt=0 where id="&id
if zzt=0 then conn.Execute "update [myshua] set zt=1 where id="&id
response.redirect "main.asp"
为什么从上页提交过来的参数ID和ZZT能接收到.但这个IF语句好像不起作用,如果去掉IF语句,那么数据库能更新.加上这个IF后数据库就更新不了了.什么问题.
接收页整个代码就是这样,如果加了IF就不行.不加IF直接更新没有问题
我还是第一次遇到这个问题
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>一流万能XX系统</title>
</head>
<!--#include file="conn.asp"-->
<body>
<%
id=request.querystring("id")
zzt=request.querystring("zzt")
if zzt="1" then conn.Execute "update [myshua] set zt=0 where id="&id
if zzt="0" then conn.Execute "update [myshua] set zt=1 where id="&id
'response.redirect "main.asp"
response.write zzt & " / " & IsNumeric(zzt) & " / " & Len(zzt) : response.end
%>
</body></html> 展开
2个回答
展开全部
if zzt="1" then conn.Execute "update [myshua] set zt=0 where id="&id
if zzt="0" then conn.Execute "update [myshua] set zt=1 where id="&id
因为 request.querystring() 方法返回的值是字符串类型的.
if zzt="0" then conn.Execute "update [myshua] set zt=1 where id="&id
因为 request.querystring() 方法返回的值是字符串类型的.
更多追问追答
追问
还是没有用呀
追答
那就说明你的zzt即不是"1"也不是"0"
你可以在IF之前加一句调试
response.write zzt & " / " & IsNumeric(zzt) & " / " & Len(zzt) : response.end
看一下zzt的值.
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询