I have a large menu with lots of pictures that appears on top of every page.
What I thought was to put my menu in a PartialView
and store it in OutputCache
. But then, all the menu content still have to make the trip from server to client on every new page load.
Would it be possible to set the OutputCacheLocation
for a PartialView
to Client
?
I would be surprised if this was possible, but then what would happen if I do set the cache location of a PartialView
to Client
? Would it be ignored or cached on the sever?