I have an ASP.Net Web Forms application. The blog post "CacheCow Series - Part 0: Getting started and caching basics" mentions that Output Caching
uses HttpRuntime.Cache
behind the scene -hence not HTTP caching
. The request reaches the server and cached response is sent from the server (when the valid cached output is avaialble on the server). So the entire content is sent across the wire.
Is there any HTTP Caching available for ASP.Net Web Forms (where response content is not sent from the server, if cache is valid; but the client takes it from it's HTTP Cache after getting validity information (only) from the server)?
REFERENCES
- Is page output cache stored in ASP.NET cache object?
- Things Caches Do - Ryan Tomayko - 2ndscale.com/