I am trying to load DataTable using web.api
My HTML code as bellow
<button id="refresh">Refresh</button>
<button id="AddRow">Add New Row</button>
<table id="stdTable" class="table table-bordered table-striped" width="100%">
<thead>
<tr>
<th>Id</th>
<th>Name</th>
<th>Age</th>
<th>Date of birth</th>
<th>Edit/View</th>
</tr>
</thead>
</table>
My modal as bellow
public class StudentModel {
[Key]
public int Id { get; set; }
public String Name { get; set; }
public int Age { get; set; }
public DateTime DateofBirth { get; set; }
}