For those who are new to Asp.net, session state is a way to store and retrieve user specific values. This state is linked to a user and it’s lifetime equals the duration of the user ‘s session. The session state can be programmatically accessed during the different requests of the user. When you enable the […]

Read More →

In my previous post Cache tag helper in MVC 6 i explained how you can cache certain parts from you view. In this post I’ll show you how you can cache the entire output of a controller action and how you can define cache profiles that can be used in your entire application. Reponse cache […]

Read More →

In MVC 6 you can use Tag Helpers in your views. They are similar come the HTML helpers when know but tag helpers lean more to html then C# code. I already wrote some posts (Creating a custom tag helper, Tag helper and dependency Injection) about tag helpers but in this one I’ll take a look […]

Read More →