I'm working with a legacy ASP.NET WebForms application, I can't really migrate it to ASP.NET MVC, so I decided to at least divide the application a bit and get things a more organized, I got a nice little ORM and added a Model layer, so now I have aspx files, as my Views, and the Code-Behind as somewhat a Controller, and my separate project, which is a class library, as the Model layer.
Is there a reccommended design patter which is simple and easy to implement for ASP.NET WebForms?