cshtml
@model AspNetWebApplication.ViewModels.Book
@{
Layout = null;
}
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>Index</title>
</head>
<body>
@using (Html.BeginForm("AddBook", "Home"))
{
@Html.LabelFor(model => model.Author)
<BR />
@Html.EditorFor(model => model.Author)
@Html.ValidationMessageFor(model => model.Author, null, new { style = "color:red" })
<BR />
<input type="submit" value="Сохранить" />
}
</body>
</html>