The typical way to pass an object to a view is to pass its type through the viewpage object. Unfortunately, this only allows you to send one object to the view. E.g.:
public partial class Index : ViewPage<Person>
{
}
But what if you need to display other information in the view that's not relevant to the Person object? Do you typically create "view objects" that would extend the Person object and add the additional properties you need to display on the page?
Duplicate: http://stackoverflow.com/questions/238430/how-do-i-pass-multiple-objects-to-viewpage-in-aspnet-mvc
