Hi All, I am a new user to ASP and would like to add a to an accumalted value.
The value stored in QTYALLOC can be a 1 or a 2 but currently the code will only add increment by 1, but what I am trying to do is increment by the value of QTYALLOC. I had placed order in the increment counter (StockAllocate + 1) like so (StockAllocate + 1) but this did not seem to work. My syntax mak not be correct.
What I have tried is not working. Any assistance would be appriciated.
if rowStock("QTYALLOC") <> "0" then
' allocated
order= rowStock("QTYALLOC")
StockAllocate = (StockAllocate + 1)
end if
Thanks in advance
David