Remove 1st element in the classic asp array

Senzuri

New Member
I have a 2-D array in classic asp, my aim is to find 1st element in that array and save it in a variable. after that remaining elements(except the first element) are saved in same array.Example: if "\[code\]aryReturn\[/code\]" is an array like.\[code\]aryReturn(0,0) = 1001aryReturn(1,0) = 1002aryReturn(2,0) = 1003 aryReturn(3,0) = 1004aryReturn(4,0) = 1005aryReturn(5,0) = 1006\[/code\]Now I want to find the 1st element(\[code\]aryReturn(0,0)= 1001\[/code\]) in \[code\]Dim intValue\[/code\].\[code\]intValue = http://stackoverflow.com/questions/12674536/1001\[/code\]then after that, it sholud return the array with remaining elements.aryReturn = \[code\]aryReturn(0,0) = 1002aryReturn(1,0) = 1003aryReturn(2,0) = 1004 aryReturn(3,0) = 1005aryReturn(4,0) = 1006\[/code\]Please help me... thanks in adv.
 
Back
Top