用户登录  |  用户注册
首 页商业源码原创产品编程论坛
当前位置:PB创新网文章中心编程技巧Delphi

用application存数组的例子

减小字体 增大字体 作者:佚名  来源:本站整理  发布时间:2009-03-16 20:15:24
If you store an array in an Application object, you should not attempt to alter the elements of the stored array directly. For example, the following script does not work:<br>
<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 分) 查看完整评论
PB创新网ourmis.com】Copyright © 2000-2009 . All Rights Reserved .
页面执行时间:8,078.12500 毫秒
Email:ourmis@126.com QQ:2322888 蜀ICP备05006790号