3

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?

asked Jul 5, 2012 at 9:45
1
  • looks like variation of Master page design Commented Jul 5, 2012 at 9:57

1 Answer 1

4

Short answer: looks like a variation of a Master-child design.

Long answer: there are different standards how UI pattern is defined. To express them, i have combined listing that might be helpful to expand on this topic.

answered Jul 5, 2012 at 10:05

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.