次の 2 つの項目があります。1 つは読み取り専用です:-
@Html.TextBoxFor(model => model.Technology.Tag, new
{ @readonly = "readonly" })
もう一方が無効になっている間:-
@Html.DropDownListFor(model => model.Customer.NAME, ((IEnumerable<TMS.Models.AccountDefinition>)ViewBag.Customers).Select(option => new SelectListItem
{
Text = (option == null ? "None" : option.ORG_NAME),
Value = option.ORG_NAME.ToString(),
Selected = (Model != null) && (Model.Customer != null) & (option.ORG_NAME == Model.Customer.NAME)
}), "Choose...", new { disabled = "disabled" })
asp.net mvc モデル バインダーは 2 つのアイテムをバインドしますか? 、または読み取り専用および無効なフィールドを無視しますか?