if i have a master page that binds with ObjectA and then a View that binds with ObjectB, how does that work (or does it work at all) in asp.net mvc.
master page might have:
Inherits="System.Web.Mvc.ViewMasterPage<CalendarEvent[]>" %>
and one of the view might have:
Inherits="System.Web.Mvc.ViewPage<Tournament[]>" %>
what would you pass into the view from the controller since there are 2 models in this case you are binding to?
is this bad practice to have the master page have a binding object?