⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 odefault.aspx

📁 This is a book about vb.you could learn this from this book
💻 ASPX
字号:
<%
'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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -