Category Archives for ASP.NET Core

ASP.NET Core – ConfigureServices vs Configure

Introduction We already talked about Configuration method inside of Startup when we talked about requests and middleware. In this post, we will see what exactly ConfigureServices and Configure methods are for and how they differ. In ASP.NET Core we have a Startup class where all the configuration is done and processed once the application is […]

Continue reading

ASP.NET Core SignalR – Simple chat

Update The code has been updated to use latest SignalR – 6 which works with ASP.NET Core 6 Link to GitHub repository: https://github.com/Ibro/SignalRSimpleChat Angular 5 version: here React.js version: here   Introduction In the last post, we briefly mentioned what SignalR is all about and talked about the history of the SignalR. In this post, […]

Continue reading

ASP.NET Core SignalR Introduction

Introduction ASP.NET SignalR is a library for ASP.NET developers that simplifies the process of adding real-time web functionality to applications. Real-time web functionality is the ability to have server code push content to connected clients instantly as it becomes available, and not having the server wait for a client to ask for new data. An […]

Continue reading

ASP.NET Core MVC – Custom Tag Helpers

This entry is part 4 of 5 in the ASP.NET Core Tag Helpers series

Introduction In on of the previous posts we talked about Tag Helpers, we also talked about caching Tag Helpers and form Tag Helpers. By creating our custom Tag Helpers, we have an ability to extend existing HTML elements or create our custom HTML elements. A Tag Helper is any class that implements ITagHelper interface. However, MVC […]



Continue reading