新微赢技术网

标题: 图书管理系统ASP的代码请教问题 [打印本页]

作者: 红苹果    时间: 2010-1-11 02:38
标题: 图书管理系统ASP的代码请教问题
图书管理系统ASP
其中对于书籍删除、减少的一个ASP代码困惑,始终返回值不正确也不知道错在哪里?知道的请回答下哈 谢谢了50分
<html>
<body>
<%
dim bId,bCnt,rs,bA,bC
bId=Request.Form("bId")
bCnt=Request.Form("bCnt")
set rs=Session("Conn").Execute("select bId from books where bId='"&bId&"'")
bA=("select bAmount from books where bId='"&bId&"'")
bC=("select bCnt from books where bId='"&bId&"'")
if bId="" or bCnt="" or len(bId)>30 or isnumeric(bCnt)=false then
Response.Write("3")
elseif bCnt<1 then
Response.Write("3")
elseif rs.EOF then
Response.Write("1")
【elseif bCnt>bC then
Response.Write("2")】
elseif bCnt=bC and bA=bC then
Session("Conn").Execute("delete from books where bId='"&bId&"'")
Response.Write("0")
else
Session("Conn").Execute("update books set bCnt=bCnt-"&bCnt&",bAmount=bAmount-"&bCnt&" where bId='"&bId&"'")
Response.Write("0")
end if
rs.Close()
set rs=nothing
%>
</body>
</html>
bId书号bCnt是输入的要减少的书籍数量bC是图书馆所有的该书数量。如果我要减少某本书,但是数量大于了本身的总数量,要达到返回一个值“2”然后不进行任何操作。(文中括号中的代码有问题,请修改下)
作者: 无民    时间: 2010-1-11 02:38
是出错误的地方 就是因为这句没有返回想要的2
作者: 泡个帅滴上床    时间: 2010-1-11 02:38
晕,你这个【】是干什么




欢迎光临 新微赢技术网 (http://bbs.weiying.cn/) Powered by Discuz! X3.2