我知道这可能很旧,但我需要根据自定义验证显示错误。我希望错误显示如何显示错误。
我希望像
这样的东西uploadControlId.ErrorText = "This is a custom error."
uploadControlId.ErrorShow = true;
答案 0 :(得分:0)
我不确定,但你想要这样的东西吗?
public ActionResult Create(uploadControlId model)
{
if (model.uploadControlId == 0)//Whatever your condition is
{
ModelState.AddModelError("YourModelPropertyName", "This is a custom error");
}
}