HttpApplicationState.AllKeys Property
.NET Framework 3.0
Gets the access keys in the HttpApplicationState collection.
Namespace: System.Web
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
The following example fills a string array with all the object names in the application state collection.
String stateVars[] = new String[get_Application().get_Count()]; stateVars = get_Application().get_AllKeys();
var StateVars : String[] = new String[Application.Count]; StateVars = Application.AllKeys
Community Additions
ADD
Show: