davman2002
Programmer
Is it possible to declare a single diminsion array in ASP?
My curent code that does not work is
Counter = 0
For i = 1 to 18
CurrentValue = Request.QueryString("B"& i)
If CurrentValue <> "" then
Temp(Counter) = CurrentValue
End IF
Counter = Counter + 1
Next
My curent code that does not work is
Counter = 0
For i = 1 to 18
CurrentValue = Request.QueryString("B"& i)
If CurrentValue <> "" then
Temp(Counter) = CurrentValue
End IF
Counter = Counter + 1
Next