Loading ...

Types Of Fliters In Net Core

Hello everybody, today I want to make a short document about filters in .Net Core. There are by default four types of filters: Filters that implement IAuthorizationFilter which allow us to implement OnAuthorization method which allow us to add custom security logic. Filters that implement IActio...

Net Core Tag Helpers

Hello everybody, today I want to describe some .Net core tag helpers that you can use in order to create your web pages. There are plenty of already implemented tag helpers that can simplify your life as a developer. Here is the list of already made: Anchor Cache Distributed Environment Form For...

Different Types Of Views

Hello everybody, today I want to write few words about different kinds of Views in .Net core. So, if you decide somehow to create new view you can see something like this: and now question. What is the difference between MVC View Page, MVC View Layout Page, MVC View Start Page and MVC View Impor...