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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|