我的模特:
[Required(ErrorMessage = "Company type is mandatory")]
public string CompanyTypeName
{
get;
set;
}
我的观点:
@Html.TextBoxFor(model => model.CompanyTypeName, new { @class = "block", maxlength = "50" })
这很好用。如果我将该字段留空或为空,"公司类型是强制性的"显示验证消息。 但我想要同样的:
<input type="text" id="CompanyTypeName" name="CompanyTypeName" value="@Model.CompanyTypeName" class = "block" maxlength = "50" />
如果我添加&#34;必需&#34;属性然后验证成为客户端。上述代码的服务器端验证?提前谢谢。