a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
17 lines
568 B
C#
17 lines
568 B
C#
namespace System.Web.Mvc {
|
|
public class ModelClientValidationStringLengthRule : ModelClientValidationRule {
|
|
public ModelClientValidationStringLengthRule(string errorMessage, int minimumLength, int maximumLength) {
|
|
ErrorMessage = errorMessage;
|
|
ValidationType = "length";
|
|
|
|
if (minimumLength != 0) {
|
|
ValidationParameters["min"] = minimumLength;
|
|
}
|
|
|
|
if (maximumLength != Int32.MaxValue) {
|
|
ValidationParameters["max"] = maximumLength;
|
|
}
|
|
}
|
|
}
|
|
}
|