Example #1
0
 public void InsertCachedPage(ContentItem contentItem, string html)
 {
     _webContext.HttpContext.Cache.Insert(GetCacheKey(contentItem),
         html, null, DateTime.Now.Add(contentItem.GetPageCachingDuration()),
         Cache.NoSlidingExpiration);
 }