I am using RaphaelJS to debug some performance issues in IE8. We are using ~1000 elements and text nodes in raphael to build graphics, especially when a graphic is rendered, it will cause us to app
Tag: Strong
ASP.NET-MVC – ASP.NET MVC – Strong Type View Model, where is it?
I am trying to create a strongly typed view model, John Sheehan suggested here. Where should it go? I can defend myself for models, views and controllers. It should be placed in the “Models” dir
ASP.NET-MVC – Linq Groupby in strong type MVC view
How to get IGrouping results to map to views?
I have this question:
var groupedManuals = manuals.GroupBy(c => c.Series);
return View (groupedManuals); What is the correct mapping of the
ASP.NET-MVC – Strong Type Object Hold Controller and View Separation
I have a question about keeping the controller and the view separate. In my opinion, the controller should only pass the model to the view, and the view decides how to display the model. In this wa