form mvc async

Solutions on MaxInterview for form mvc async by the best coders in the world

showing results for - "form mvc async"
Louisa
12 May 2018
1@using (Html.BeginForm("Something","Student",FormMethod.Post,new { id="studForm"}))
2{
3    @Html.LabelFor(model => model.Thing)
4    @Html.EditorFor(model => model.Thing)
5    <input type="submit" value="Submit">
6}