facebook
Layout web con CSS Grid

Layout web con CSS Grid

Introduction In the year 2009, after a long transition period separating us from the use of charts and the launch of style sheets, the period of “Flash and Silverlight” was about to finish. New ways to easily develop the web layouts with an engaging design had to be...
Creating a Single Page Application in C# with Blazor

Creating a Single Page Application in C# with Blazor

Microsoft Developers have always had a bad relationship with JavaScript, and Microsoft has always tried to help them with its own frameworks: ASP.NET WebForms, Silverlight, Lightswitch, are probably the main examples of this. With ASP.NET MVC and .NET Core it seemed...
Let’s solve the “rebus” of communication

Let’s solve the “rebus” of communication

In the previous articles, we have seen how to decouple the communication between applications using a Message Broker like RabbitMQ. When a software system is composed of multiple services that perform different tasks but need to interact with each other to perform...
Managing the drag & drop in Angular

Managing the drag & drop in Angular

Is it possible in a web application to display data in tabular form and allowing the user to move columns with the drag and drop? In this article, I will tell you about my experience in an Angular project. Let’s start with basics using the HTML tag <table>:...
Distributed cache in ASP.NET Core

Distributed cache in ASP.NET Core

In the previous article, I explained how to manage the caching in an ASP.NET Core application, using the in-memory caching. It’s possible to use this type of caching if your application is hosted on a single server. Which are instead the tools that the .NET...