ASP编程:session变量能够请求数组吗?
SQLServer是基于服务器端的中型的数据库,可以适合大容量数据的应用,在功能上管理上也要比Access要强得多。在处理海量数据的效率,后台开发的灵活性,可扩展性等方面强大。session|变量|数组IfyoustoreanarrayinaSessionobject,youshouldnotattempttoaltertheelementsofthestoredarraydirectly.Forexample,thefollowingscriptwillnotwork:<br><br>
<%Session("StoredArray")(3)="newvalue"%><br>
<br>
ThisisbecausetheSessionobjectisimplementedasacollection.ThearrayelementStoredArray(3)doesnotreceivethenewvalue.Instead,thevalueisindexedintothecollection,overwritinganyinformationstoredatthatlocation.<br>
<br>
ItisstronglyrecommendedthatifyoustoreanarrayintheSessionobject,youretrieveacopyofthearraybeforeretrievingorchanginganyoftheelementsofthearray.Whenyouaredonewiththearray,youshouldstorethearrayintheSessionobjectagainsothatanychangesyoumadearesaved.Thisisdemonstratedinthefollowingexample:<br>
<br>
---file1.asp---<br>
<%<br>
Creatingandinitializingthearray<br>
DimMyArray()<br>
RedimMyArray(5)<br>
MyArray(0)="hello"<br>
MyArray(1)="someotherstring"<br>
<br>
StoringthearrayintheSessionobject.<br>
Session("StoredArray")=MyArray<br>
<br>
Response.Redirect("file2.asp")<br>
%><br>
<br>
---file2.asp---<br>
<%<br>
RetrievingthearrayfromtheSessionObject<br>
andmodifyingitssecondelement.<br>
LocalArray=Session("StoredArray")<br>
LocalArray(1)="there"<br>
<br>
Printingoutthestring"hellothere."<br>
Response.Write(LocalArray(0)&LocalArray(1))<br>
<br>
Re-storingthearrayintheSessionobject.<br>
ThisoverwritesthevaluesinStoredArraywiththenewvalues.<br>
Session("StoredArray")=LocalArray<br>
%><br>
<br>
</p>专业性的服务。有的ASP商提供垂直型的应用服务,针对某一特定行业提供应用服务。 那么,ASP.Net有哪些改进呢? ASP.Net和ASP的最大区别在于编程思维的转换,而不仅仅在于功能的增强。ASP使用VBS/JS这样的脚本语言混合html来编程,而那些脚本语言属于弱类型、面向结构的编程语言,而非面向对象,这就明显产生以下几个问题: 从事这个行业,那么你可以学ASP语言,简单快速上手,熟练dreamweav排版,写asp代码,熟练photoshop处理图片,打好基础就行了 最近在学asp,不要问我为什么不直接学.net,因为公司网站是asp做的所以有这个需要,卖了本书asp入门到精通,对里面的六大内置对象老是记不住,还有很多属性和方法看的头晕。 以上是语言本身的弱点,在功能方面ASP同样存在问题,第一是功能太弱,一些底层操作只能通过组件来完成,在这点上是远远比不上PHP/JSP,其次就是缺乏完善的纠错/调试功能,这点上ASP/PHP/JSP差不多。 从事这个行业,那么你可以学ASP语言,简单快速上手,熟练dreamweav排版,写asp代码,熟练photoshop处理图片,打好基础就行了 Session:这个存储跟客户端会话过程的数据,默认20分钟失效 以HTML语言整合(HTML负责界面上,ASP则负责功能上)形成一个B/S(浏览器/服务器)模式的网页程序。 他的语法和设计思路和VB完全相同,导致很多ASP的书都留一句“相关内容请参考VB的相关教材....”更糟糕的是,相当多的ASP教程混合了Javascript,VBscript等等脚本语言,搞的初学者。
页:
[1]