What's a good data structure for use in MVC web applications to use to pass data into view to ensure standardization and keep the view as non-coder friendly as possible?
Recommended data structure/format for web MVC applications
model-view-controllerweb-applications
Best Solution
Use a custom model class and keep it as non-coder friendly as possible :)
How you construct the model class strongly depends on the specific page.