[SOLVED] Multiple values from checkboxes to individual database e |
2/4/2010 7:38:25 PM |
ASPRunnerPro General questions | |
C
codywallace author
I am attempting to use the sample event from the ASPRunnerPro 6.1 manual titled "Select multiple values from checkboxes or a list field and have them appear as individual database entries" but when I use the code verbatim, replacing the red text with my field names, I receive an IE error message "Error Type: Microsoft VBScript runtime (0x800A01A8) Object required: 'arr'".
Dim arr
|
|
![]() |
Sergey Kornilov admin 2/4/2010 |
This appears to be a bug in sample code. for i=0 to arr.Count
for i=lbound(arr) to ubound(arr) |
C
|
codywallace author 2/5/2010 |
Dear Sergey, |