Hi everyone, i have manages to build an array from a user selecting some inventory. The array is of the inventoryIDs. I can iterate thru the InventoryID like so:
For intArrIndex=0 to UBound(arrInventoryIDs)
response.write " InventoryID = " & arrInventoryIDs(intArrIndex)
Next
In the inventory table, where InventoryIDs are stored, i need to compare the Price and extraPersonCharge for each InventoryID in the array. If either one is different, then for each InventoryID that is different i need to response.write a message.
I'm still an array beginner so any help would be appreciated, thanks!
For intArrIndex=0 to UBound(arrInventoryIDs)
response.write " InventoryID = " & arrInventoryIDs(intArrIndex)
Next
In the inventory table, where InventoryIDs are stored, i need to compare the Price and extraPersonCharge for each InventoryID in the array. If either one is different, then for each InventoryID that is different i need to response.write a message.
I'm still an array beginner so any help would be appreciated, thanks!