Form

« AJAX Form2 »
Name Movie Director Movie Genre Released
Star Wars George Lucas Sci-Fi 1997
Reservoir Dogs Quentin Tarantino Thriller 1992
Airplane! David and Jerry Zucker and Jim Abrahams Slapstick 1980
Terminator James Cameron Action 1984
Terminator 2: Judgement Day James Cameron Action 1991

View

<form method="post">
    @(await Html.SimpleGrid(Model.Take(5))
        .AddColumn(col => col
            .HeaderCheckboxAll("Names")
            .DisplayAs(model => $"<input name='Names' type='checkbox' value='{model.Name}' />")
            .Encoded(false))
        .AddColumnsForModel()
        .RenderAsync())
    <button class="btn btn-primary">Submit</button>
</form>

Controller

[HttpPost, ValidateAntiForgeryToken]
public IActionResult Forms(string[] names)
{
    return View(MovieQuery).Success($"You selected: {string.Join(", ", names)}");
}