Shared Tutorials New
Website Development
2D & 3D Graphics
Audio & Video Editing
Databases
Desktop Programming
Operating Systems
Business Applications
Miscellaneous
Selected Reading
© 2011 TutorialsPoint.COM
|
Shared Tutorials Directory
Tutorials Shared by the Community
-
This tutorial will show how to use the Application object to store cached data.
http://www.codebeach.com/tutorials/caching-data-in-asp.asp
Tutorial Statistics
Do you have a web page that takes a long time to generate? Do you have a SQL query that you want to cache the results? This tutorial will show how to use Application variables to store cached data.
Application Variables
The Application object allows you to store data in a single location that can be shared by one or more ASP files in a directory and its subdirectories. The Application object stores data by a named index. You can store any type of data in the Application object including strings, dates, and numbers. To cache data, we will store multiple kinds of data in the Application object. More detail...
|
|
|