[求助]asp变量运算问题
user_money1=request("user_money") //表单提交的原始金额money1=request("money1") //要充值或扣款的
money_add=request("money_add")
if money_add="充值" then
user_money=(cint(user_money1) + cint(money1))
elseif money_add="扣款" then
user_money=(cint(user_money1) - cint(money1))
end if
Response.Write(user_money) //最后的充值结果
如果原始金额:100
充值50的结果是50
扣款50的话就是-50
请高手指教错在哪里,变量运算的式子有没有错?我是新手,谢谢~
以上的变量类型全是文本