I want to access data, i have created table with header, but i want to filter that table with data from db. How do i do this in asp.net mvc using bootstrap. Here is my logic and need some help, below are the headers from my db, but i want to filter it with data from my db.
- <table class="table">
- <thead>
- <tr>
- <th scope="col">Id</th>
- <th scope="col">Course</th>
- <th scope="col">CourseLicence</th>
- <th scope="col">Nickname</th>
- <th scope="col">Term </th>
- <th scope="col">EnrolledAs</th>
- <th scope="col">Published</th>
- </tr>
- </thead>
- </table>