Showing posts with label set serial number in mvc. Show all posts
Showing posts with label set serial number in mvc. Show all posts

How to give serial numbers in list view pages

  @{int index = 1;}

    @foreach (var item in Model)

    {

        <tr>

            <td>

                @index

            </td>              

        </tr>

        index++;

    }