<%@ LANGUAGE = VBScript %> <% Option Explicit %> <% Response.Expires= -1 %> Application Object

Application Object


Add some items to the Application Object: (see .asp source code)

<% Application("MyTest1") = "Test1" Application("MyTest2") = 2 Application("MyTestDate") = Now() Application("MyTestNull") = Null Application("MyTestEmpty") = Empty Application("MyTestBoolean") = True Application("MyTestArrayString") = Array("Test1","Test2","Test3") Application("MyTestArrayNumeric1") = Array(1,2,3) Application("MyTestArrayNumeric2") = Array(1.1,2.2,3.3) %> <% call listItemsInObject(Application.Contents, "Application.Contents") %> <% call listItemsInObject(Application.StaticObjects, "Application.StaticObjects") %>