0

我想验证 DropDownListFor 中的值,但它不起作用。我也包含了客户端验证所需的脚本文件。

在视图模型中:

public class SearchViewModel
{
    public List<MarriageProfile> Profiles { get; set; }
    public SearchProfile SearchProfile { get; set; }
}

public class SearchProfile
{
    [Required(ErrorMessage="*")]
    public SelectList Ages { get; set; }
    public string Age { get; set; }
}

在控制器中:

var ages = AgeList
           .Select(p => new SelectListItem()
           {
               Text = p.ToString(),
               Value = p.ToString()
           }).ToList();

SearchViewModel.SearchProfile.Ages = new SelectList(ages, "Text", "Value");

static List<string> AgeList = new List<string>()
{        
    "18-23",
    "23-28",
    "28-33",
    "33-38",
    "38-43",
    "43-48"
};

在视图中:

@Html.DropDownListFor(model => model.Age, Model.Ages, "--Select One--", new { @class = "form-control" })
@Html.ValidationMessageFor(m => m.Age)

在提交表单时,没有客户端或服务器端验证适用于上面的下拉列表。代码可能有什么问题?

4

1 回答 1

1

看来您需要Age使用Required属性而不是Ages列表来标记属性。看看这个答案:ASP.NET MVC 3 and validation attribute for dropdownlist with default value of 0

于 2013-08-29T13:11:43.737 回答