3
Reply

Design Patterns in ASP.NET

Sphurthy

Sphurthy

16y
15k
0
Reply

    Model-View-Controller (MVC) - MVC is a design pattern that separates the application into three components: the model (data), the view (user interface), and the controller (logic). This pattern allows for easy separation of concerns and promotes modular code.

    For State management we use Singleton pattern.

    What are the design patterns in ASP.NET that can be used for maintaining state

    Programming-Questions