I am getting a type mismatch (800a000d) on the following segment of code. The error is thrown on the line starting "For i = 1..." Could this be caused by using the Dim statement with ASP? Or can anyone see another reason?
coachdan32
Code:
KCO = Request.Form("KCOCodes").Count
Dim KCOCodes()
Dim C
For C = 1 to KCO
CurRecs = Request.Form("KCOCodes").Count
REDIM PRESERVE KCOCodes(CurRecs)
Next
For i = 1 to Request.Form("KCOCodes").Count
KCO(i) = Request.Form("KCOCodes")(i)
Next
coachdan32