Is there a design pattern I can use in asp.net pages that will help me program pages more effieciently? In particular its when I have to save something to a database and then set up some page controls etc…
Share
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.
ASP.NET Page shouldn’t be used to realise DB centric tasks. You should introduce Data Access Layer and then
You should consider:
Repository Pattern
ActiveRecord Pattern