@model WebApplication6.Models.MusicGenre @{ ViewData["Title"] = "CreateGenre"; Layout = "~/Views/Shared/_Layout.cshtml"; } @using (Html.BeginForm()) {

Add Music Genre

@Html.TextBoxFor(m => m.Genre, new { @class = "form-control" })
}