Target User
Beginner He/She learning MVC and want to delete a record by clicking
on delete button on table row.
Table Stucture
Model
public class StudentModel
{
public int Roll { get; set; }
public string Name { get; set; }
public string City { get; set; }
}
Controller
//Show Record Page
public
ActionResult ShowData()