ASPxUploadControl验证错误消息

时间:2017-01-30 03:44:52

标签: asp.net validation

我知道这可能很旧,但我需要根据自定义验证显示错误。我希望错误显示如何显示错误。

我希望像

这样的东西
uploadControlId.ErrorText = "This is a custom error."
uploadControlId.ErrorShow = true;

1 个答案:

答案 0 :(得分:0)

我不确定,但你想要这样的东西吗?

     public ActionResult Create(uploadControlId model)
    {

        if (model.uploadControlId == 0)//Whatever your condition is
        {
            ModelState.AddModelError("YourModelPropertyName", "This is a  custom error");
        }
    }