新客网WWW.XKER.COM:致力做中国最专业的网络学院!
学院: 操作系统 - 网络应用 - 服务器 - 网络安全 - 工具软件 - 办公软件 - Web开发 - 数据库 - 网页设计 - 图形图像 - 媒体动画 - 硬件学堂 - 存储频道 - QQ专区
您的位置:首页 > 软件开发 > Web开发 > Asp教程 > 正文:session变量可以申请数组吗?

session变量可以申请数组吗?

新客网 XKER.COM 2003-07-11 来源: 收藏本文
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>
&lt;% Session(&quot;StoredArray&quot;)(3) = &quot;new value&quot; %&gt;<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>
&lt;%<br>
'Creating and initializing the array<br>
Dim MyArray()<br>
Redim MyArray(5)<br>
MyArray(0) = &quot;hello&quot;<br>
MyArray(1) = &quot;some other string&quot;<br>
<br>
'Storing the array in the Session object.<br>
Session(&quot;StoredArray&quot;) = MyArray<br>
<br>
Response.Redirect(&quot;file2.asp&quot;)<br>
%&gt;<br>
<br>
---file2.asp---<br>
&lt;%<br>
'Retrieving the array from the Session Object<br>
'and modifying its second element.<br>
LocalArray = Session(&quot;StoredArray&quot;)<br>
LocalArray(1) = &quot; there&quot;<br>
<br>
'Printing out the string &quot;hello there.&quot;<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(&quot;StoredArray&quot;) = LocalArray<br>
%&gt;<br>
<br>
收藏】 【评论】 【推荐】 【投稿】 【打印】 【关闭
发表评论
要记得去论坛讨论,点击注册新会员匿名评论
评论内容:不能超过250字,需审核后才会公布,请自觉遵守互联网相关政策法规。
阅读排行
随机推荐
实用信息推荐