Hello
I have a list of Data the passed into my View
in View , It show Data like this Picture . each data in 1 row :
I want to Divide Data result in 3 column across from other Like This Picture
my code is :
- <table>
- @{
- foreach (var item in Model)
- {
- int aa = Convert.ToInt32(item.Number);
- <tr>
- <td class="tg-baqh"><a href="/Home/Fehrest/@item.Section_ID" >@item.Number</a></td>
- <td class="tg-baqh">@item.Name</td>
- <td class="tg-baqh">@Html.ActionLink("edit", "EditSection", new { id = item.Section_ID })</td>
- </tr>
- }
- }
- </table>
Please Help me