views:

52

answers:

1

I'm just curious to know what type of pattern do the Web User Controls in ASP.NET fall into?

+2  A: 

I don't think we can talk about a design pattern, I would say that its related to
DRY and KISS principles

You create a user control when you're trying to group some functionality. Reasons for doing this are:

  • To split a page in smaller pieces for simplicity (KISS)
  • To avoid repeated logic (DRY)
Claudio Redi