用application存数组的例子
<br>
<% Application("StoredArray")(3) = "new value" %><br>
<br>
This is because the Application object is implemented as a collection. The array element StoredArray(3) does not receive the new value. Instead, the value would be included in the Application object collection, and would overwrite any information that had previously been stored at that location.<br>
<br>
It is strongly recommended that if you store an array in the Application 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 Application object again, so that any changes you made are saved. This is demonstrated in the following scripts.<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 Application object.<br>
Application.Lock<br>
Application("StoredArray") = MyArray<br>
Application.Unlock<br>
<br>
Server.Transfer("file2.asp")<br>
%><br>
<br>
---file2.asp---<br>
<%<br>
''Retrieving the array from the Application Object<br>
''and modifying its second element.<br>
LocalArray = Application("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 Application object.<br>
''This overwrites the values in StoredArray with the new values.<br>
Application.Lock<br>
Application("StoredArray") = LocalArray<br>
Application.Unlock<br>
%><br>
<br>
Tags:
作者:佚名评论内容只代表网友观点,与本站立场无关!
评论摘要(共 0 条,得分 0 分,平均 0 分)
查看完整评论