Re: MVC 2 design, how to

2007-04-06 Thread Ted Husted
On 4/6/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: How many approach there is ? Where can I read about them ? Just the two. Either put the properties on the Action class, or implement ModelDriven. A third might be to create your own interceptor that did the same thing as ModelDriven, but

Re: MVC 2 design, how to

2007-04-06 Thread mansour77
Ted Husted wrote: It sounds like that you might want to use the ModelDriven approach, How many approach there is ? Where can I read about them ? where the AccountManager is the model object. If I move the business logic to the action class then this becomes MVC1. From my understanding the

Re: MVC 2 design, how to

2007-04-05 Thread Ted Husted
It sounds like that you might want to use the ModelDriven approach, where the AccountManager is the model object. I was surprised to find that there doesn't seem to be a page or FAQ with regard to using ModelDriven. Essentially, all you need to do is place a model property on a base Action class