hashtable.aspx

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

ASPX
20
字号
<%@Page Language="VB"%>
<%@ Import Namespace="System.IO" %>

<%

dim table as Hashtable = new Hashtable()
dim value as string

table("name") = "Richard"
table("age") = "Old enough"


for each value in table.Values 
	Response.Write("<br>" & value )
next

%>

<p style="color:red" id=status EnableViewState=False runat=server />

⌨️ 快捷键说明

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