I'm building a website page with asp.net (webforms).
I'm using partial caching (output caching) for a page. So A
and B
(user controls) are cached. (while the page is not). Is there any way I can see in Fiddler
that A
and B
are retrieved from the cache while the page is not?
___________________
| Page |
| ____ |
| + + |
| | A |(ascx) |
| +____+ |
| |
| |
| ____ |
| + + |
| | B |(ascx) |
| +____+ |
| |
| |
___________________
edit
Lets say A.ascx
contains only :
<span>Hello A</span>
and B.ascx
contains only :
<span>Hello B</span>
and the output cache location is "Private" ( for the ascx only !).