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

session变量可以申请数组吗?

减小字体 增大字体 作者:佚名  来源:本站整理  发布时间:2009-03-16 20:16:58
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>

Tags:

作者:佚名

文章评论评论内容只代表网友观点,与本站立场无关!

   评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论
PB创新网ourmis.com】Copyright © 2000-2009 . All Rights Reserved .
页面执行时间:27,296.88000 毫秒
Email:ourmis@126.com QQ:2322888 蜀ICP备05006790号