欢迎光临
我们一直在努力

session变量中的数组如何引用_asp技巧

建站超值云服务器,限时71元/月

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
%>

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » session变量中的数组如何引用_asp技巧
分享到: 更多 (0)

相关推荐

  • 暂无文章