session变量中的数组如何引用

圆梦高考须

圆梦高考须

2016-01-29 18:24

session变量中的数组如何引用,session变量中的数组如何引用
  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:

<% Session("StoredArray")(3) = "new value" %

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.

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:

---file1.asp---
<%
'Creating and initializing the array
Dim MyArray()
Redim MyArray(5)
MyArray(0) = "hello"
MyArray(1) = "some other string"

'Storing the array in the Session object.
Session("StoredArray") = MyArray

Response.Redirect("file2.asp")
%

---file2.asp---
<%
'Retrieving the array from the Session Object
'and modifying its second element.
LocalArray = Session("StoredArray")
LocalArray(1) = " there"

'Printing out the string "hello there."
Response.Write(LocalArray(0)&LocalArray(1))

'Re-storing the array in the Session object.
'This overwrites the values in StoredArray with the new values.
Session("StoredArray") = LocalArray
%

 
展开更多 50%)
分享

猜你喜欢

session变量中的数组如何引用

ASP
session变量中的数组如何引用

php的变量引用 函数引用 对象引用

PHP
php的变量引用 函数引用 对象引用

s8lol主宰符文怎么配

英雄联盟 网络游戏
s8lol主宰符文怎么配

标量变量和数组变量

编程语言 网络编程
标量变量和数组变量

如何取得所有的Session变量

ASP
如何取得所有的Session变量

lol偷钱流符文搭配推荐

英雄联盟 网络游戏
lol偷钱流符文搭配推荐

2.10 Application/Session变量工具

Web开发
2.10 Application/Session变量工具

变量的“追随”:cookie与session

PHP
变量的“追随”:cookie与session

lolAD刺客新符文搭配推荐

英雄联盟
lolAD刺客新符文搭配推荐

WPS2000中实现立体字效果

WPS2000中实现立体字效果

用正则表达式写的HTML分离函数

用正则表达式写的HTML分离函数
下拉加载更多内容 ↓