Simple increment of a local variable in views in ASP.NET MVC3 (Razor)
@{ int counter = 1; foreach (var item in Model.Stuff) { … some code … counter = counter + 1; } } Explanation: @{ // csharp code block // everything in here is code, don’t have to use @ int counter = 1; } @foreach(var item in collection){ <div> – **EDIT** – html tag is … Read more