ps-team
10/27/2017 - 8:08 AM

Conditionally change the class on items in a foreach loop

Conditionally change the class on items in a foreach loop

@{
   int counter=0;
 }
 @foreach (var item in Model)
 { 
   counter++;
   <div class="@(counter<=3 ? "classRed":"classBlue")">
       <img src="@item.Blog.Image.img_path" alt="Not Found" />
       //other markup also here

   </div>  
    if (counter == 6)
    {
        counter = 0;
    }

 }