求助ASP的问题,Microsoft VBScript 运行时错误 错误 '800a005e' 无效使用 Null: 'CInt'
Microsoft VBScript 运行时错误错误 '800a005e'无效使用 Null: 'CInt'/outinadd.asp,行 62。62行上和下的代码如下:end if sql="select medicalid,cname from medical order by medicalid"
set mdrs=oConn.Execute(sql)
if mdrs.eof then
Response.Write "请在『药品管理』中 <a href=""medadd.asp"">录入药品信息</a> !"
ret=false
end if
if ret=true then
if init=false then
if optype=0 then
maxcount=CInt(rs("topcount"))-CInt(rs("curcount")) '最大进货量
if maxcount<0 then
tmsg="药品数量已经超过仓库存储上限!"
maxcount=0
end if
else
maxcount=CInt(rs("curcount")) '最大出货量
if CInt(rs("curcount"))-CInt(rs("basecount"))<0 then
tmsg="药品数量已经低于仓库存储下限!"
end if
end if
end if
代码哪错了,求解!