Then Could I use a session(array)? . Like this?
---file1.asp---
<%
'Creating and initializing the array
Dim MyArray()
Redim MyArray(5)
MyArray(0) = "hello"
MyArray(1) = "some other string"
'Storing the array in the Session object
Session("StoredArray"

= MyArray
Response.Redirect("file2.asp"

%>
---file2.asp---
<%
LocalArray = Session("StoredArray"

LocalArray(1) = " there"
Response.Write(LocalArray(0)&LocalArray(1))
%>
I have been using this but when want to use the session(array)(LocalArray) a cant retrieve the values from the array ,I checked the if the array in file 1 has been created well and is OK but the the problem is in the file 2 when I want retrieve the values also whith response.write [sig][/sig]