ASP教程之session变量中的数组怎样援用
由于ASP提供的是一对多的服务,所以用户的一些特殊需求很难得到满足。session|变量|数组IfyoustoreanarrayinaSessionobject,youshouldnotattempttoaltertheelementsofthestoredarraydirectly.Forexample,thefollowingscriptwillnotwork:<%Session("StoredArray")(3)="newvalue"%>
ThisisbecausetheSessionobjectisimplementedasacollection.ThearrayelementStoredArray(3)doesnotreceivethenewvalue.Instead,thevalueisindexedintothecollection,overwritinganyinformationstoredatthatlocation.
ItisstronglyrecommendedthatifyoustoreanarrayintheSessionobject,youretrieveacopyofthearraybeforeretrievingorchanginganyoftheelementsofthearray.Whenyouaredonewiththearray,youshouldstorethearrayintheSessionobjectagainsothatanychangesyoumadearesaved.Thisisdemonstratedinthefollowingexample:
---file1.asp---
<%
Creatingandinitializingthearray
DimMyArray()
RedimMyArray(5)
MyArray(0)="hello"
MyArray(1)="someotherstring"
StoringthearrayintheSessionobject.
Session("StoredArray")=MyArray
Response.Redirect("file2.asp")
%>
---file2.asp---
<%
RetrievingthearrayfromtheSessionObject
andmodifyingitssecondelement.
LocalArray=Session("StoredArray")
LocalArray(1)="there"
Printingoutthestring"hellothere."
Response.Write(LocalArray(0)&LocalArray(1))
Re-storingthearrayintheSessionobject.
ThisoverwritesthevaluesinStoredArraywiththenewvalues.
Session("StoredArray")=LocalArray
%>
</p>ASP由于使用了COM组件所以它会变的十分强大,但是这样的强大由于WindowsNT系统最初的设计问题而会引发大量的安全问题。只要在这样的组件或是操作中一不注意,哪么外部攻击就可以取得相当高的权限而导致网站瘫痪或者数据丢失; 下载一个源代码,然后再下载一个VBScript帮助,在源代码中遇到不认识的函数或是其他什么程序,都可以查帮助进行解决,这样学习效率很高。 另外因为asp需要使用组件,所以了解一点组件的知识(ADODB也是组件) 代码的可重用性差:由于是面向结构的编程方式,并且混合html,所以可能页面原型修改一点,整个程序都需要修改,更别提代码重用了。 Response:从字面上讲是“响应”,因此这个是服务端向客户端发送东西的,例如Response.Write ASP的语言不仅仅只是命令格式差不多,而是包含在<%%>之内的命令完全就是VB语法。虽然ASP也是做为单独的一个技术来提出的,但他就是完全继承了VB所有的功能。 以HTML语言整合(HTML负责界面上,ASP则负责功能上)形成一个B/S(浏览器/服务器)模式的网页程序。 Session:这个存储跟客户端会话过程的数据,默认20分钟失效 交流是必要的,不管是生活还是学习我们都要试着去交流,通过交流我们可以学到很多我们自己本身所没有的知识,可以分享别人的经验甚至经历。
页:
[1]