©
Ce document utiliseManuel du site Web PHP chinoisLibérer
StaticObjects 集合包含所有使用 HTML 的
Application.StaticObjects(Key)
Session.StaticObjects(Key)
参数 | 描述 |
---|---|
key | 必需。要取回的项目的名称。 |
循环遍历 StaticObjects 集合:
<%
for each x in Application.StaticObjects
Response.Write(x & "
")
next
%>
在 Global.asa 中:
在 ASP 文件中:
<%
for each x in Application.StaticObjects
Response.Write(x & "
")
next
%>
输出:
MsgBoard
AdRot
循环遍历 StaticObjects 集合:
<%
for each x in Session.StaticObjects
Response.Write(x & "
")
next
%>
在 Global.asa 中:
在 ASP 文件中:
<%
for each x in Session.StaticObjects
Response.Write(x & "
")
next
%>
输出:
MsgBoard
AdRot