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, 4355👍, 0💬
Popular Posts:
What is the sequence of UML diagrams in project? First let me say some fact about this question, you...
Can you prevent a class from overriding ? If you define a class as “Sealed” in C# and “NotInheritab...
What is a delegate ? Delegate is a class that can hold a reference to a method or a function. Delega...
Once I have developed the COM wrapper do I have to still register the COM in registry? Yes.
What Is the Data Pump Import Utility? - Oracle DBA FAQ - Loading and Exporting Data Oracle Data Pump...