Regular Expression for TimeSpan in format “hh.mm”

hershey

New Member
I want to create RegularExpressionValidator for validation TextBox format hh.mm.This expression works:\[code\]^([0-9]|0[0-9]|1[0-9]|2[0-3]).[0-5][0-9]$\[/code\]But if I insert \[code\]5454\[/code\] in the TextBox it also passes, but it shouldn't.
 
Back
Top