JemimaChadwick
Programmer
I have a combo from which i select values...as i select, i want the HTML table beneath to include the selection...I want all this manipulation done in the client-end itself. I am able to manage the table part of it. Now on submitting the form i have to write the selected items into the Database table. To do this, i use an array and redim the size with the PRESERVE keyword each time the select button is clicked. But the values don't get preserved in the Array. Wat cld be the prblm? Or how else can i achieve this task if i dont use Arrays?
PS: All manipulations have to done as client-side scripts using VBScript only.
-------------------
CODE
-------------------
count=0
if count = 0 then
redim arrStore(0,3)
else
redim Preserve arrStore(count,3)
end if
...
count=count+1
--------------END OF CODE----------------
- Jemima.
PS: All manipulations have to done as client-side scripts using VBScript only.
-------------------
CODE
-------------------
count=0
if count = 0 then
redim arrStore(0,3)
else
redim Preserve arrStore(count,3)
end if
...
count=count+1
--------------END OF CODE----------------
- Jemima.