I'm building a web app, and I have objects that are 'bound' to screens (conceptually). However, the only way I can save an object that has been changed on the screen (or a new one created) is with using forms and sending it to the controller. If i want to go to the next record, I have to request a new page, with paremeters where record = currentrecord + 1 (the Id).
There are applications like oracle ADF and some web applications that work differently in the sense that a screen is linked to an object, and you can do 'insert, delete, edit, next/previous' without re-loading the page (requesting an URL with parameters).
I have no clue what the options are for MVC, any ideas any one? I do know those apps dont work with AJAX or some async method.