I am creating dynamic variables
using the following code:
i=0
while (...)
execute("Var"&i&"= Y")
i = i +1
next
the problem is I don't know how to
check the value of that variable later on
in the code, right now I'm doing this, but
don't think it's working
i=0
while(...)
if execute("Var"&i&"= Y") then
Response.write("in here")
end if
next
any suggestions?
Thanks in advanced
using the following code:
i=0
while (...)
execute("Var"&i&"= Y")
i = i +1
next
the problem is I don't know how to
check the value of that variable later on
in the code, right now I'm doing this, but
don't think it's working
i=0
while(...)
if execute("Var"&i&"= Y") then
Response.write("in here")
end if
next
any suggestions?
Thanks in advanced