在ASP编程中使用数组

数组的定义

Dim MyArray

MyArray = Array(1,5,123,12,98)

可扩展数组

Dim MyArray()

for i = 0 to 10

ReDim Preserve MyArray(i)

MyArray(i)=i

next

将一个字符串分割并返回分割结果的数组

Dim MyArray

MyArray = Split(tempcnt,chr(13)&chr(10))

For I = Lbound(MyArray) to Ubound(MyArray) 

Response.Write MyArray(I) & "<br>"

Next

数组排序函数

function..Sort(ary) 

KeepChecking = TRUE 

Do Until KeepChecking = FALSE 

KeepChecking = FALSE 

For I = 0 to UBound(ary) 

If I = UBound(ary) Then Exit For 

If ary(I) > ary(I+1) Then 

FirstValue = ary(I) 

SecondValue = ary(I+1) 

ary(I) = SecondValue 

ary(I+1) = FirstValue 

KeepChecking = TRUE 

End If 

Next 

Loop 

Sort = ary 

End function..

数组排序函数应用例子

Dim MyArray 

MyArray = Array(1,5,123,12,98)

MyArray = Sort(MyArray) 

For I = Lbound(MyArray) to Ubound(MyArray) 

Response.Write MyArray(I) & "<br>"

Next

在Application和Session中使用数组

Application.Lock

Application("StoredArray") = MyArray

Application.Unlock

LocalArray = Application("StoredArray")

覆盖Application中的数组

Application.Lock

Application("StoredArray") = LocalArray

Application.Unlock

Session使用方法与Application相同

从数据库中把数据导入数组中

Dim MyArray

取出全部记录

MyArray = RS.GetRows

取出前10项记录

MyArray = RS.GetRows(10)

For row = 0 To UBound(MyArray, 2)

For col = 0 To UBound(MyArray, 1)

Response.Write (col, row) & "<br>"

Next

Next

时间: 2024-10-31 14:42:14

在ASP编程中使用数组的相关文章

在ASP编程中使用数组_应用技巧

数组的定义 Dim MyArray MyArray = Array(1,5,123,12,98) 可扩展数组 Dim MyArray() for i = 0 to 10 ReDim Preserve MyArray(i) MyArray(i)=i next 将一个字符串分割并返回分割结果的数组 Dim MyArray MyArray = Split(tempcnt,chr(13)&chr(10)) For I = Lbound(MyArray) to Ubound(MyArray)  Respo

ASP 编程中 20 个非常有用的例子——适合初学者

编程|初学|初学 如果内容很多,请先在本机编辑好,以免session过期导致内容丢失.ASP 编程中 20 个非常有用的例子 1.如何用Asp判断你的网站的虚拟物理路径 答:使用Mappath方法 < p align="center" >< font size="4" face="Arial" >< b > The Physical path to this virtual website is: < /

ASP 编程中20个非常有用的例子

编程 ASP 编程中 20 个非常有用的例子1.如何用Asp判断你的网站的虚拟物理路径 答:使用Mappath方法 < p align="center" >< font size="4" face="Arial" >< b > The Physical path to this virtual website is: < /b >< /font > < font color=&qu

ASP编程中15个非常有用的例子(一)

ASP编程中15个非常有用的例子 enet学院 1.如何用Asp判断你的网站的虚拟物理路径 答 使用Mappath方法 <p align="center"><font size="4" face="Arial"><b> The Physical path to this virtual website is: </b></font> <font color="#FF000

ASP编程中15个非常有用的例子 (二)

ASP编程中15个非常有用的例子 enet学院 8.强迫输入密码对话框 答把这句话放载页面的开头 <% response.status="401 not Authorized" response.end %> 9 如何传递变量从一页到另一页 答 用HIDDEN类型来传递变量 <% form method="post" action="mynextpage.asp"> <% for each item in reque

ASP编程中15个非常有用的例子 (二)(转)

编程 ASP编程中15个非常有用的例子 enet学院 8.强迫输入密码对话框 答把这句话放载页面的开头 <% response.status="401 not Authorized" response.end %> 9 如何传递变量从一页到另一页 答 用HIDDEN类型来传递变量 <% form method="post" action="mynextpage.asp"> <% for each item in re

ASP编程中15个非常有用的例子(一)(转)

编程 ASP编程中15个非常有用的例子 enet学院 1.如何用Asp判断你的网站的虚拟物理路径 答 使用Mappath方法 <p align="center"><font size="4" face="Arial"><b> The Physical path to this virtual website is: </b></font> <font color="#FF

Asp.net编程中的数组基础实例学习

Asp.net数组(Array)可以视为储存多个数据类型相同的值的变量,以同一个变量名称,不同的索引值来区分表示多个值.多用来存放性质或类型相同的数据. 1.数组的声明 数组的声明有以下两种格式: 以下是引用片段: Dim数组名(元素数量) [As数据类型] Dim数组名() [As数据类型]={元素值l,元素值2-} 2.数组元素的表示 当声明一个数组并赋予其元素之后,该数组即可开始执行,其中数组的元素表示方式如下: 数组名(索引值)=元素值 提示: 索引值自O起计算.数组元素量最多可声明26

asp编程中非常实用的例子

编程 1.如何用Asp判断你的网站的虚拟物理路径 答:使用Mappath方法 < p align="center" >< font size="4" face="Arial" >< b > The Physical path to this virtual website is: < /b >< /font > < font color="#FF0000" si