Posts Tagged ‘asp.net mvc’
Monday, 22 August 2011 by Joseph in Programming • 0 Comments
Model Binding can be a tricky thing to get right with MVC. Dealing with flat POCOs works fine, but when you start getting into more complex, truly object oriented domain objects, things get out of hand pretty quickly.
I’ve been using this PagedList functionality that i found from a blog article Rob Conery put up, and a control I found by Robert Muehsig which I’ve really enjoyed using so far.
One of the things that was missing from the functional set that I ended up needing was the ability to page the list, but through issuing AJAX requests instead of the typical post back.
So I went off and extended the existing model to support AJAX requests, and thought I would share it in case anyone else needed to do the same thing.
