Batch publish is very useful when you do big updates. It is almost impossible to handle one hundred or more of documents one by one. This has been one of the more frequently requested ones and finally it is here. The process scans for all possible changes in the related descendant pages and publish them. …
Category: Episerver
Impersonate Users
If you are working as a supporting partner or a developer for an EPiServer website that has gated content and permissions for logged in users, you may need to provide access to various of them and check that everything is working properly. In most of cases, users used to say "This page is not accessible", …
Clear caches individually
Recently I was asked for an easy way to manually delete a cache entry key, so I decided to build a simple module that could be helpful for both developers and administrators who understand how cache is used; for instance, to invalidate Content Output Cache in EPiServer. This tool have the following: List all cache …
Content Output Caching – Part 3
It is possible to easily cache the rendering of a web page using a custom condition by setting a custom string, which ASP.NET will vary the output by. To test it, you need to create a class that inherits from MvcOutputCacheAttribute. Take a look at the following example: public class VaryByBrowser : Verndale.OutputCache.Attributes.MvcOutputCacheAttribute { protected …
Content Output Caching – Part 2
In the previous post you learned about how to install the output caching module in a EPiServer project. Now it is time to see it in action. First, I created a MVC application that displays a list of pages, so by default, each time the user invokes the controller action to see records, the application …
Content Output Caching – Part 1
Using Output Caching helps to improve the performance of an ASP.NET MVC Application. It caches the content returned by an action method so that the same content does not need to be generated each time the same action method is invoked in the controller. If a page takes a lot of server-side resources to create, …