Tag Archives for.NET Core

ASP.NET Core Interview Questions

Introduction ASP.NET Core and .NET Core have been in development for years already. If you look into ASP.NET Core MVC repository history, you will find commits from July 2013. These are the new frameworks from Microsoft, that are the completely open source and cross-platform. If you want to learn more about ASP.NET Core, you could […]

Continue reading

Why you should learn ASP.NET Core

Introduction A bit of History I have been surprised by the fact that so many people are not aware of Microsoft’s open source shift over last 5 (and maybe few more) years. Lots of people are not aware of current state of .NET, .NET Core and ASP.NET Core. And I do not blame them, they […]

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

ASP.NET Core Razor Pages – Introduction

Introduction With ASP.NET Core 2 around the corner, the hottest new thing that we are getting is Razor Pages. In one of the previous posts, we briefly mentioned ASP.NET Core Razor Pages. Razor Pages is a new feature of ASP.NET Core that makes coding page-focused scenarios easier and more productive. Initial impression of the public […]

Continue reading