Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What are different types of caching using cache object of ASP.NET?
.NET INTERVIEW QUESTIONS - What are different types of caching using cache object of ASP.NET?
✍: Guest
You can use two types of output caching to cache information that is to be transmitted to and displayed in a Web browser:
* Page Output Caching
Page output caching adds the response of page to cache object. Later when page is requested page is displayed from cache rather than creating the page object and displaying it. Page output caching is good if the site is fairly static.
* Page Fragment Caching
If parts of the page are changing, you can wrap the static sections as user controls and cache the user controls using page fragment caching.
2009-05-12, 4395👍, 0💬
Popular Posts:
How can we suppress a finalize method? GC.SuppressFinalize ()
Can you explain project life cycle ? Figure :- 12.2 Life cycle of a project There are five stages of...
What is difference between Association, Aggregation and Inheritance relationships? In object oriente...
Who Developed HTML? HTML was originally developed by Tim Berners-Lee while at CERN, and popularized ...
What is difference between ADPATCH and OPATCH ? # ADPATCH is utility to apply ORACLE application Pat...