Table of Contents [Hide/Show]
Instance Properties CountInstance Methods Add Clear Get ( Number ) Get ( String ) Lock Remove RemoveAll RemoveAt ( Number ) Set ( String, Object ) UnLockSee Also
Application.Add("UserName", "John Doe");
Application.Clear();
x = Application.Get( 1 );
username = Application.Get( "UserName" );
Application.Lock(); Application.Update("MyCount", Application.Get("MyCount") + 1); Application.UnLock();
Response.Remove("UserName");
Application.RemoveAll();
x = Application.RemoveAt( 1 );
x = Application.Set( "MyValue", 12 );