ASP.Net [HiddenInput] Atrybut danych nie działa przy renderowaniu za pomocą Html.EditorForModel w Razor?

Mam następujący model:

public class Product
{
    [HiddenInput(DisplayValue = false)]
    public int ProductID { get; set; }

    [Required(ErrorMessage="Please enter a product name")]
    public string Name { get; set; }

    [Required(ErrorMessage="Please enter a description")]
    [DataType(DataType.MultilineText)]
    public string Description { get; set; }

    [Required]
    [Range(0.01, double.MaxValue, ErrorMessage="Please enter a positive price")]
    public decimal Price { get; set; }

    [Required(ErrorMessage="Please specify a category")]
    public string Category { get; set; }

    public byte[] ImageData { get; set; }

    [HiddenInput(DisplayValue = false)]
    public string ImageMimeType { get; set; }
}

Odnoszę sięSystem.Web.Mvc iSystem.ComponentModel.DataAnnotations.

Wydaje mi się to w następujący sposób:

<h1>Edit @Model.Name</h1>

@using (Html.BeginForm("Edit", "Admin", FormMethod.Post, new { enctype = "multipart/form-data" })) {
@Html.EditorForModel()

<div class="editor-lable">Image</div>
<div class="editor-=field">
    @if (Model.ImageData == null)
    {
        @:None
        }
    else
    {
        <img width="150" height="150" src="@Url.Action("GetImage", "Product", new { Model.ProductID })" />
    }
    <div>Upload new image: <input type="file" name="Image" . /></div>
</div>
<input type="submit" value="Save" />
@Html.ActionLink("Cancel and return to List", "Index")

}

Problem polega na tym, że podczas gdy[Required] adnotacje działają poprawnie[HiddenInput] pola się nie ukrywają. Źródło html nie ma nawet ukrytego atrybutu.

Dlaczego nieHtml.EditorForModel zastosowanie[HiddenInput] przypisać te właściwości? Jakieś pomysły?

questionAnswers(6)

yourAnswerToTheQuestion