ASP.net Toolkit Masked Edit Control With 99:99 Time Mask - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T19:51:00Zhttp://stackoverflow.com/feeds/question/445553http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/445553/asp-net-toolkit-masked-edit-control-with-9999-time-mask0ASP.net Toolkit Masked Edit Control With 99:99 Time MaskElement2009-01-15T03:28:57Z2009-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#4463391Answer by Zhaph - Ben Duguid for ASP.net Toolkit Masked Edit Control With 99:99 Time MaskZhaph - Ben Duguid2009-01-15T10:50:01Z2009-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><ajaxToolkit:MaskedEditValidator
ControlExtender="MaskedEditExtender2" />
</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>