69pao国产精品视频-久久精品一区二区二三区-精品国产精品亚洲一本大道-99国产综合一区久久

VB 實例 Array 數(shù)組

vb 實例

 array 數(shù)組

@code
dim members as string()={"jani","hege","kai","jim"}
i=array.indexof(members,"kai")+1
len=members.length
x=members(2-1)
end code
<html>
<body>
<h3>members</h3>
@for each person in members
    @<p>@person</p>
next person

<p>the number of names in members are @len</p>
<p>the person at position 2 is @x</p>
<p>kai is now in position @i</p>

</body>
</html>

相關文章