function sort(ary)
ck=true
do until ck=false
ck=false
for f=0 to UBound(ary)-1
if clng(ary(f))>clng(ary(f+1)) then
v1=clng(ary(f))
v2=clng(ary(f+1))
ary(f)=v2
ary(f+1)=v1
ck=true
end if
next
loop
sort = ary
end function
本人在学ASP 想问下 sort=ary这里 是什么意思。
ASP中是怎样调用本地方法的?