Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a textbox for U.S phone number. For this i am using MaskedEditExtender and RegularExpressionValidator to check if user has entered the number in a correct format. Following is the code:

<ajax:MaskedEditExtender ID="meePhoneNumber" runat="server" Mask="999-999-9999" TargetControlID="tbComapnyPhoneNumber" MaskType="Number" ClearMaskOnLostFocus="false" AutoComplete="false" MessageValidatorTip="true" ErrorTooltipEnabled="true" />

<asp:RegularExpressionValidator ID="revCompanyPhone" runat="server" ValidationExpression="((\(\d{3}\) ?)|(\d{3}-))?\d{3}-\d{4}( x\d{0,})?" ControlToValidate="tbComapnyPhoneNumber" ErrorMessage="Please enter a valid phone number" Display="Dynamic" />

Now when i save the data it validates the textbox even though it is not required field validator. When i change ClearMaskOnLostFocus to true then it saves the data even if i leave the etxtbox empty but when i change it to false it doesn't let me save.

share|improve this question

1 Answer

Force validator to consider a mask text as valid value:

ValidationExpression="(((\(\d{3}\) ?)|(\d{3}-))?\d{3}-\d{4}( x\d{0,})?)|(^___-___-____$)"
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.