hello all i have a textbox =textbox1:
When I add a 9 digit zip code on the gift card replacement screen as 12345-1234, it is stored in the gift card address entry as 123451234 (dash is not stored).
If I edit the gift card address on the gift card detail page, and enter the 9 digit zip code as 12345-1234, it is stored as 12345-1234 (dash is stored).
everyone can hepl me?
Hi Tazan,
It is not clear which control you refer to. If it is WebMaskEdit, then please look at the DataMode property. That affects format of Value. Default value is RawTextWithRequiredPrompts which skips literal characters like "-". You may try to use RawTextWithLiterals or AllText.