国产探花免费观看_亚洲丰满少妇自慰呻吟_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ā)表
主站蜘蛛池模板: 鹤峰县| 牟定县| 清镇市| 长岛县| 叙永县| 和林格尔县| 柳江县| 建德市| 都兰县| 循化| 和顺县| 当阳市| 株洲市| 水富县| 惠东县| 竹溪县| 景谷| 水城县| 嘉荫县| 民乐县| 布拖县| 象山县| 丰顺县| 丁青县| 锦州市| 石台县| 雷州市| 天门市| 古田县| 襄城县| 曲靖市| 宜城市| 桃源县| 穆棱市| 黎平县| 进贤县| 左贡县| 左贡县| 江北区| 小金县| 昌宁县|