Is it possible to partially cache a page in asp using output caching?
I am building a blog and each blog post will have its own page I was thinking of caching each blog posts page and using the varybyparam cache parameter on the post id.
The page will have a number of social elements that I want to be different for each person so i don’t want these cached.
You could use UserControls for the portions of the page that you want to be cached and use the
<%@ OutputCache %>directive to configure it. Here’s an article on MSDN which explains the process.