I add cache to my application, I have a page containing several user controls, my problem is that I just want to cache the data returned from the controller, but I do not want to cache the entire contents of the page. Since one of my user controls is an input control, if I cache the whole result then it will behave incorrectly.
my problem:
1. Is it possible to simply cache the data returned from the controller?
2. If the page is cached, can I force the control on the page to be blocked?
source
share