MVC基架生成的Detele视图

@model MyMusicStore.Models.Album

@{
    ViewBag.Title = "Delete";
}

Delete

Are you sure you want to delete this?



   

Album


   

   

       

            @Html.DisplayNameFor(model => model.Artist.Name)
       

       


            @Html.DisplayFor(model => model.Artist.Name)
       

       


            @Html.DisplayNameFor(model => model.Genre.Name)
       

       


            @Html.DisplayFor(model => model.Genre.Name)
       

       


            @Html.DisplayNameFor(model => model.Title)
       

       


            @Html.DisplayFor(model => model.Title)
       

       


            @Html.DisplayNameFor(model => model.Price)
       

       


            @Html.DisplayFor(model => model.Price)
       

       


            @Html.DisplayNameFor(model => model.AlbumArtUrl)
       

       


            @Html.DisplayFor(model => model.AlbumArtUrl)
       

   

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

       


            |
            @Html.ActionLink("Back to List", "Index")
       

    }

 

转载于:https://www.cnblogs.com/dxmfans/p/9434599.html

你可能感兴趣的:(MVC基架生成的Detele视图)