@model MvcMusicStore.Models.Album @{ ViewBag.Title = "Create"; }

Create

@using (Html.BeginForm()) { @Html.AntiForgeryToken()

Album


@Html.ValidationSummary(true, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.GenreId, "GenreId", htmlAttributes: new { @class = "control-label col-md-2" })
@Html.DropDownList("GenreId", null, htmlAttributes: new { @class = "form-control" }) @Html.ValidationMessageFor(model => model.GenreId, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.ArtistId, "ArtistId", htmlAttributes: new { @class = "control-label col-md-2" })
@Html.DropDownList("ArtistId", null, htmlAttributes: new { @class = "form-control" }) @Html.ValidationMessageFor(model => model.ArtistId, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.Title, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.Title, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.Title, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.Price, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.Price, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.Price, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.AlbumArtUrl, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.AlbumArtUrl, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.AlbumArtUrl, "", new { @class = "text-danger" })
}
@Html.ActionLink("Back to List", "Index")