1

当我单击索引页面上的提交按钮时,请参见下图: 索引页

我的问题: 我只是自定义必需属性,为什么ProductDescription的错误消息不显示?

我的所有文件,请参阅以下部分:

产品模型.cs

namespace TestCustomValidation.Models
{
    public class ProductModel
    {
        [Required(ErrorMessage = "It's for test for ProductName")]
        public string ProductName { get; set; }

        [CustomRequired(ErrorMessage = "It's for test for ProductDescription")]
        public string ProductDescription { get; set; }
    }
}

索引.cshtml

...
@{Html.RenderAction("Form");}
...

_FormPartial.cshtml

@model TestCustomValidation.Models.ProductModel
@using (Html.BeginForm("FormSubmit", "Home", new { @id = "form", @name = "form" }))
{
    @Html.AntiForgeryToken()
    @Html.ValidationSummary(true)
    <table cellpadding="0" cellspacing="0">
        <tr>
            <th colspan="2" align="center">Person Details</th>
        </tr>
        <tr>
            <td>Name: </td>
            <td>
                @Html.TextBoxFor(m => m.ProductName)
            </td>
            <td>
                @Html.ValidationMessageFor(m => m.ProductName)
            </td>

        </tr>
        <tr>
            <td>Description: </td>
            <td>
                @Html.TextBoxFor(m => m.ProductDescription)
            </td>
            <td>
                @Html.ValidationMessageFor(m => m.ProductDescription)
            </td>
        </tr>
        <tr>
            <td></td>
            <td><input type="submit" value="Submit" /></td>
        </tr>
    </table>
}

家庭控制器.cs

public class HomeController : Controller
    {
        public ActionResult Index()
        {
            ViewBag.Message = "Modify this template to jump-start your ASP.NET MVC application.";

            return View();
        }

        public PartialViewResult Form()
        {
            ProductModel model = new ProductModel();
            return PartialView("_FormPartial", model);
        }

        [HttpPost]
        public ActionResult FormSubmit(ProductModel model)
        {
            if (ModelState.IsValid)
            {
                string name = model.ProductName;
                return RedirectToAction("About");
            }

            return PartialView("_FormPartial", model);
        }
}

CustomRequiredAttribute.cs

namespace TestCustomValidation.CustomValidation
{
    public class CustomRequiredAttribute : RequiredAttribute
    {
    }
}

感谢提前!

4

2 回答 2

0

我敢打赌,您的页面中包含 jQuery 验证,它实际上永远不会进入您的服务器,而是向您显示与该输入字段关联的消息作为客户端验证。

于 2017-06-22T15:19:11.923 回答
0

我的回答,供进一步参考:

Global.asax.cs

protected void Application_Start()
{
    // Add Custom Attribute
    System.Web.Mvc.DataAnnotationsModelValidatorProvider.RegisterAdapter(
                typeof(TestCustomValidation.CustomValidation.CustomRequiredAttribute),
                typeof(System.Web.Mvc.RequiredAttributeAdapter));

}
于 2017-06-23T03:38:14.580 回答