I am just learning design patterns and I have few questions
1) Can I have multiple design patterns in the application?
2) What are good or advised design patterns for ASP.NET B2C applications?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Design patterns is used to solve specific programming problems. They are not used to architecture your applications.
Yes. See above.
Guess you are asking if there are any existing frameworks available to create a website which is easy to extend and maintain?
Use layered architecture where you isolate each layer by using the Separated Interface pattern. For the database, use Repository pattern (easiest way to archive that is to use a ORM like nhibernate). As for the webSite, use ASP.NET MVC.