ASP.net Toolkit Masked Edit Control With 99:99 Time Mask - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T19:51:00Z http://stackoverflow.com/feeds/question/445553 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/445553/asp-net-toolkit-masked-edit-control-with-9999-time-mask 0 ASP.net Toolkit Masked Edit Control With 99:99 Time Mask Element 2009-01-15T03:28:57Z 2009-01-15T11:33:41Z <p>Hi,</p> <p>I am trying to use the asp.net ajax toolkit masked edit control to take an hour/minute input with the mask 99:99 and the masktype="time" property set.</p> <p>However it doesn't seem to do any time validation client or server side.... it allows me to input any numbers like 88:77 which isn't a valid time.</p> <p>Is this a bug in the control or is there some way to configure it to take an hour/minute combination, if its not possible can you suggest a free control that allows it.</p> <p>Thanks</p> http://stackoverflow.com/questions/445553/asp-net-toolkit-masked-edit-control-with-9999-time-mask/446339#446339 1 Answer by Zhaph - Ben Duguid for ASP.net Toolkit Masked Edit Control With 99:99 Time Mask Zhaph - Ben Duguid 2009-01-15T10:50:01Z 2009-01-15T11:33:41Z <p>This may be a silly question, but you have added a MaskedEditValidator control to the page as well, and wired it up?</p> <pre><code>&lt;ajaxToolkit:MaskedEditValidator ControlExtender="MaskedEditExtender2" /&gt; </code></pre> <p>They are seperate controls that have the added to your page.</p> <p>ETA: Also, if you haven't added at least an "InvalidValueBlurredMessage" (and "EmptyValueMessage" if "IsValidEmpty" is set to false) or "OnInvalidCssClass" the validator won't appear to do anything on the client side.</p>