gpt4 book ai didi

asp.net - 如何忽略对模型属性的验证?

转载 作者:行者123 更新时间:2023-12-05 00:01:55 26 4
gpt4 key购买 nike

一世。 e 如何对模型的单个属性应用验证,同时忽略 if(modelstate.Isvalid){} 上的其他(该模型的属性)? 型号

using System.ComponentModel.DataAnnotations;
namespace abc.Model
{
using System;
using System.Collections.Generic;

public partial class check_master
{
public int MCheck_id { get; set; }
[Required]
public string check_name { get; set; }
public string field { get; set; }
public Nullable<byte> max_length { get; set; }
public int check_id { get; set; }
}
}

查看
  @using (Html.BeginForm("addCheck", ""))
{
<input type="hidden" id="from" name="from" value="@ViewBag.from" readonly="readonly" />
<fieldset>


<tr>
<td>
@Html.DropDownList("check_master", "--select checks--")
</td>
<td>
@Html.TextBox("checkName", "")
@Html.ValidationMessage("check_name")
</td>
</tr>
</table>
</fieldset>
<p>
<input type="submit" value="Add" />
</p>

}

最佳答案

[Bind(Exclude = "Property_Name")]

关于asp.net - 如何忽略对模型属性的验证?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8655602/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com