日期:2013-01-21  浏览次数:20941 次

If you store an array in a Session object, you should not attempt to alter the elements of the stored array directly. For example, the following script will not work:<br>
<br>
<% Session("StoredArray")(3) = "new value" %><br>
<br>
This is because the Session object is implemented as a collection. The array element StoredArray(3) does not receive the new value. Instead, the value is indexed into the collection, overwriting any information stored at that location. <br>
<br>
It is strongly recommended that if you store an array in the Session object, you retrieve a copy of the array before retrieving or changing any of the elements of the array. When you are done with the array, you should store the array in the Session object again so that any changes you made are saved. This is demonstrated in the following example:<br>
<br>
---file1.asp---<br>
<%<br>
'Creating and initializing the array<br>
Dim MyArray()<br>
Redim MyArray(5)<br>
MyArray(0) = "hello"<br>
MyArray(1) = "some other string"<br>
<br>
'Storing the array in the Session object.<br>
Session("StoredArray") = MyArray<br>
<br>
Response.Redirect("file2.asp")<br>
%><br>
<br>
---file2.asp---<br>
<%<br>
'Retrieving the array from the Session Object<br>
'and modifying its second element.<br>
LocalArray = Session("StoredArray")<br>
LocalArray(1) = " there"<br>
<br>
'Printing out the string "hello there."<br>
Response.Write(LocalArray(0)&LocalArray(1))<br>
<br>
'Re-storing the array in the Session object.<br>
'This overwrites the values in StoredArray with the new values.<br>
Session("StoredArray") = LocalArray<br>
%><br>
<br>