Answer: The Extensible Output Caching is used to store the HTTP response and page output in memory. With the help of this Output Caching Feature, ASP.NET can serve the subsequent requests more quickly by retrieving the data from memory.
The default configuration settings are shown below:
<caching>
<outputCache defaultProvider="AspNetInternalProvider">
<providers>
<add name="DiskCache"
type="Test.OutputCacheEx.DiskOutputCacheProvider, DiskCacheProvider"/>
</providers>
</outputCache>
</caching>
Asked In: Many Interviews |
Alert Moderator