Is there any way to implement Page Caching for some certain URL pattern? For example, I have articles on my ASP.NET website and they don't changed so frequently. All of them have a URL pattern as following:
www.myite.com/articles/article1.aspx
www.myite.com/articles/article2.aspx
www.myite.com/articles/article3.aspx
and so on.
I want them all to be cached for 24 hours at least on server. How do I do it? Any help.