rabisco
MIS
- Jan 4, 2007
- 21
I'm really hoping some kind soul can help here.
THis code...
for each item in arrExcel
if item <> "None" then
Response.Write item
Response.Write("<br>")
End if
Next
Gets the item I want an print it out.
I would like to get the index of the item in the array arrExcel. How would I do that.
The arrExcel is populated thus.....
For Each keyb In Request.Form
If Left(keyb, 15)="excelFieldName_" Then
'Response.Write(Request.Form(keyb) & "<br />")
ReDim Preserve arrExcel(myCounterb)
arrExcel(myCounterb) = Request.Form(keyb)
myCounterb = myCounterb+1
End If
Next
Any help would be appreciated.
THis code...
for each item in arrExcel
if item <> "None" then
Response.Write item
Response.Write("<br>")
End if
Next
Gets the item I want an print it out.
I would like to get the index of the item in the array arrExcel. How would I do that.
The arrExcel is populated thus.....
For Each keyb In Request.Form
If Left(keyb, 15)="excelFieldName_" Then
'Response.Write(Request.Form(keyb) & "<br />")
ReDim Preserve arrExcel(myCounterb)
arrExcel(myCounterb) = Request.Form(keyb)
myCounterb = myCounterb+1
End If
Next
Any help would be appreciated.