如果mvc中的dropdownlist value == null,如何显示验证?

时间:2015-08-03 08:39:21

标签: c# asp.net-mvc string validation null

我在选择空值时显示验证消息时遇到问题。

我的下拉列表代码:

<strong>@Html.ValidationSummary("", new { @class = "text-danger" })</strong>
@Html.DropDownList("Category", null, String.Empty, new { @class = "form-control" })

我理解String.Empty等于空值(如果我错了,请纠正我)。

我的模型代码:

namespace Mp.Models
{
  using System.Collections.Generic;
  using System.ComponentModel.DataAnnotations;

  public partial class Content
  {
      [Required(ErrorMessage: "A Category is required!")]
      public string Category { get; set; }
  } 
}

0 个答案:

没有答案