I am collecting some data from a user. The data is complex, consisting of up to 40 (as few as 18) fields of data. The path of data entry is also complex and will have multiple sub-paths. I am accomplishing this using partial views, Ajax, and view models. The page never refreshes. This process involves a lot of dynamic content being placed on the page, and a series of evolving view models which contain more and more data as the path is followed. I am going to end up with around 20 partial views and 20 view models.
Is there a more standardized way of doing this while still avoiding a page refresh (such as not using so many view models)?
@{ Layout=null }
Travis J 2012-04-03 21:32
No, there is not a standardized way of dynamically doing this.