Gets an System.Web.HttpApplicationState object by name.
![]()
The object referenced by name.
The following example returns an object named MyAppVar1 from the System.Web.HttpApplicationState collection of the intrinsic HttpContext.Application object and copies it to a new object variable.
Example
Dim MyObject As Object MyObject = Application.Get("MyAppVar1")
Example
Object MyObject; MyObject = Application.Get("MyAppVar1");