Uploading Files In ASP.NET Core
Uploading files in ASP.net core is largely the same as standard full framework MVC, with the large exception being how …
Uploading files in ASP.net core is largely the same as standard full framework MVC, with the large exception being how …
Middleware is the new “pipeline” for requests in asp.net core. Each piece of middleware can process part or all of …
GZIP is a generic compression method that can be applied to any stream of bits. In terms of how it’s …
X-Content-Type-Options is a header that tells a browser to not try and “guess” what a mimetype of a resource might …
API Versioning is either something you love or you hate. It’s great for giving developers the ability to improve and …
HttpOnly is a flag that can be used when setting a cookie to block access to the cookie from client …
X-XSS-Protection is a header that can be set on a webpage to activate “limited” XSS protection in certain browsers. At …
X-FRAME-OPTIONS is a web header that can be used to allow or deny a page to be iframed. This is …
HttpContext has had a bit of a shifting around in ASP.NET Core. While everyone has their own ideas on best …
By default, browsers abide by the Same-Origin policy, which is that documents (Or in most cases scripts) cannot interact with …