Hi does anybody know if the WebMaskEditor suppports localization in relation to phone numbers or if this is possible somehow?
What I want is if your culture is set to en-US that you get a mask like (___) ___-____, but if the culture is set to en-GB the mask is (____) _______ or whatever it is supposed to be. To me it seems as though there has to be a way to do this.
Thanks
Hi,
The Culture related options come from CultureInfo class of dot-net. There are no options for telephone format.
The best I can suggest, is to process Page.OnLoad or similar event, get current (or expected) culture and adjust InputMask property accordingly.
That's what I figured was the case. Thanks for the info.