I have following define in model
[Required]
[StringLength(100, MinimumLength = 10)]
[DataType(DataType.Text)]
[Display(Name = "XXX")]
public string XXX{ get; set; }
Now I want it treat ACSII and Unicode input differently, for ASCII, each char consider length 1, so need min-length 10 and max length 50. But for Unicode char, I want to consider it length 2, so 5 unicode chars is enough for the minimal requirement.
How do I do it?
I guess I might need two approach, first overwrite the length check in asp.net, then I need to overwite the length check in jquery. Isn't it?
Is anyone here have a working sample, thanks.
"abc"an ASCII string? or a unicode string? it is both (and neither!). Are you sure you couldn't just write a custom rule somewhere that checks the UTF-8 encoded length? (then the issue of "is it this vs that" is moot, as UTF-8 would meet both single-byte and multi-byte scenarios; it is a different encoding, though). To put that another way: what characters are you calling "unicode" here? just those >= 128? – Marc Gravell♦ Nov 21 '11 at 12:53