Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

This array is fixed or temporarily locked(in asp)

Tags:

asp-classic

I want my multidimensional array to be dynamic, when I am trying to do that using reDim i am getting the error "This array is fixed or temporarily locked:refArr ", Following is my code:

max=10
dim refArr(10,2)


dim i
i=0
while not rs1.eof

        max=max+1
        redim refArr(max,2)

    niftyChange=0

        refArr(i,0)="niftyDate" 
        refArr(i,1)="temp"

    i=i+1
    rs1.movenext

wend
like image 604
Girish k. Avatar asked Apr 26 '10 14:04

Girish k.


1 Answers

If you are going to ReDim it, you need to dim it with no size initially:

dim refArr() 

I think you actually want to use ReDim Preserve, though, to keep the existing data.

like image 196
D'Arcy Rittich Avatar answered Nov 03 '22 14:11

D'Arcy Rittich