Is the structure used for these web pages a design pattern?

Posted by aspdotnetuser on Programmers See other posts from Programmers or by aspdotnetuser
Published on 2012-07-05T09:45:04Z Indexed on 2012/07/05 15:22 UTC
Read the original article Hit count: 213

Filed under:
|
|

I want to know if the structure for an ASP.NET website I'm working on uses a design pattern for it's web pages. If it is a design pattern, what is it called? The web pages have the following structure:

enter image description here

UserDetails page (UserDetails.aspx) - includes UserDetailsController.ascx user control. UserDetailsController.ascx includes sub user controls like UserAccountDetails.ascx and UserLoginDetails.ascx etc

Each sub user control contains a small amount of code/logic, the 'controller' user controls that host these sub user controls (i.e UserDetailsController.ascx) appear to call the business rules code and pass the data to the sub user controls.

Is this a design pattern? What is it called?

© Programmers or respective owner

Related posts about c#

Related posts about design-patterns