odefault.aspx

来自「This is a book about vb.you could learn 」· ASPX 代码 · 共 32 行

ASPX
32
字号
<%
'VB
dim authors as string()  

authors = new string() { "Richard","Alex", _
                         "Dave","Rob","Brian","Karli"}

dim e as IEnumerator

e = authors.GetEnumerator()

Do While e.MoveNext() = true

  Response.Write("<P>" & e.Current )
Loop

dim movieList as ArrayList
movieList = new ArrayList()
movieList.Add("Pulp Fiction")
movieList.Add("Aliens")
movieList.Add("The Good, the Bad and the Ugly")

dim movieList2 as ArrayList

movieList2 = movieList

movieList2.Add("oh fuck")

Response.Write( movieList.Count )


%>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?