Showing results for WebForms - .NET Blog

Jun 5, 2018
9
0

Use Dependency Injection In WebForms Application

Matt FJH
Matt FJH

Dependency Injection design pattern is widely used in modern applications.  It decouples objects to the extent that no client code needs to be changed simply because an object it depends changes to a different one.  It brings you a lot of benefits, like reduced dependency, more reusable code, more testable code, etc.  in the past, it was very diffi...

ASP.NET
May 22, 2018
0
0

Announcing ASP.NET Providers Connected Service Visual Studio Extension

Matt FJH
Matt FJH

Provider pattern was introduced in ASP.NET 2.0 and it gives the developers the flexibility of where to store the state of ASP.NET features (e.g. Session State, Membership, Output Cache etc.). In ASP.NET 4.6.2, we added async support for Session State Provider and Output Cache Provider.  These providers provide much better scalability, and enables t...

ASP.NETAzureVisual Studio