I want to use the MaskedEditExtender to mask short dates. The problem is that I want to mask the field depending on the user language settings. This is working for a lot of cases, but for example for Latvian Culture (with format 9999.99.99. ) is not working.
<cc1:MaskedEditExtender ID="MaskedEditExtender1" runat="server" AutoComplete="True" MaskType="Date" TargetControlID="myTextbox" ClearMaskOnLostFocus="True"
OnInvalidCssClass="myInvalidCss" OnFocusCssClass="myOnFocusClass" Mask="99/99/9999" >
</cc1:MaskedEditExtender>
Is there a simple way to set the Mask property with the user culture mask format? Am I missing something to do this easier?