国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 學(xué)院 > 開發(fā)設(shè)計(jì) > 正文

session變量中的數(shù)組如何引用

2019-11-18 20:48:57
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友
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
%>


發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 璧山县| 都安| 招远市| 五峰| 合阳县| 宿迁市| 轮台县| 介休市| 赞皇县| 淮阳县| 平武县| 江门市| 阜阳市| 晴隆县| 山东| 牟定县| 望都县| 英吉沙县| 达拉特旗| 阳泉市| 久治县| 万宁市| 乐昌市| 天柱县| 屏南县| 威海市| 收藏| 南漳县| 中宁县| 上虞市| 阳谷县| 清丰县| 两当县| 怀柔区| 静安区| 石景山区| 景宁| 建昌县| 新巴尔虎左旗| 竹北市| 浑源县|