标签: asp.net asp.net-mvc-2 enterprise-library
如何使用Enterprise Library验证拒绝空格(“”)?
[StringLengthValidator(1, RangeBoundaryType.Exclusive, 100, RangeBoundaryType.Inclusive)]
允许他们。
感谢。
答案 0 :(得分:0)
您可以尝试使用正则表达式验证器:
[RegexValidator("^([ ]+)$", MessageTemplate = "Invalid")]