Route Constraints In ASP.net Core
Route Constraints can be a handy way to distinguish between similar route names, and in some cases, pre-filter out “junk” …
Route Constraints can be a handy way to distinguish between similar route names, and in some cases, pre-filter out “junk” …
Culture in ASP.net has always been a bit finicky to get right. In ASP.NET Core there is no exception but …
In a previous article we talked about using CSRF Tokens to protect against CSRF attacks. But their main usage was …
CSRF or Cross Site Request Forgery is a type of web attack that uses a users own browser to post …
This article covers Cookie Authentication in ASP.net Core 1.X. While much is the same in subsequent versions, there are a …
In ASP.NET core there is this concept of “environments” where you set at the machine level (Or sometimes at the …
In 99% of cases, static files you want served for your website will be able to live in the wwwroot …
While .net core ships with the service collection dependency injection framework as a first class citizen, some developers may still …
Logging in any application is always a contentious issue with many developers rolling their own framework and tacking on third …
Anyone that has used the full .net MVC framework has spent many an hour trying to rejig the web.config and …