ViewBag RuntimeBinderException (MVC 4, ASPX)
I started up a Default MVC 4 project using the ASPX engine (not Razor), and everything works fine. I can use <% Model.Name %> and <% Model.Rating %> for book ratings (instead of the Restaurant Review that is up on the asp.net/mvc tutorials site). However, my code errors on the <% ViewBag.Message %> ...so for some reason, when inheriting from the "BookReviewer" Class within the BookReview model, I can view the Model information but not the Viewbag ? Am I missing something? Code below. [Controller] HomeController.cs: public class HomeController : Controller { var model = new BookReview() { Name