I have an MVC3 site that I\'ve setup for testing another site - most of it has been quick and dirty, and so I\'ve not gone to town creating model and view model types for all th
If you're just going for pure quick'n'dirty, you can always use Tuples in situations like this.
ViewBag.SomeData = Enumerable.Range(1,10).Select(i=> new Tuple(i);
-
@foreach(dynamic item in ViewBag.SomeData) { @:Number: @item.Item1 }