@using (Html.BeginFormAntiForgeryPost(Url.Action("Execute"))) {
@Html.ValidationSummary()
@for (int index = 0; index != (Model.History ?? new string[0]).Length; ++index) {
-
@Model.History[index]
@Html.HiddenFor(m => m.History[index])
}
@Html.LabelFor(m => m.CommandLine, T("Command Line"))
@Html.TextBoxFor(m => m.CommandLine, new { style = "width:100%;" })
@Html.ValidationMessageFor(m => m.CommandLine)
@Model.Results
}