New feature of .NET Core 2 – Razor Pages

If you are looking for another way of building web applications then Razor Pages are for you! Razor Pages are page based programming model for ASP.NET Core MVC and they makes page focused scenarios easier and more productive.

By Dawid on (tags: .NET Core 2.0, Pages, razor, categories: code)

Usage of response compression in ASP.NET Core 1.1

When you’ve limited network bandwidth or you are unable to use the Dynamic Compression module in IIS then ASP.NET Core 1.1 comes with rescue. ASP.NET Core team provides a middleware to handle response compression. All modern browsers support multiple compression schemes such as deflate and gzip. Using this feature in your web application can improve overall user experience. Pac…

By Dawid on (tags: compression, middleware, .NET Core 1.1, response, categories: code)