It would be great if someone could help me with a Regex for phone numbers. I have one TextBox and I use the C# Control "RegularExpressionValidator" to validate it.
<asp:TextBox runat="server" ID="txtPhone"></asp:TextBox>
<asp:RegularExpressionValidator runat="server"
ErrorMessage="Pleace enter valid phone number "
ControlToValidate="txtPhone"
ValidationExpression="">
</asp:RegularExpressionValidator>
The TextBox text have to allow only to be entered this kind of phone numbers
ex: +934 888 555 22 13
Can someone help me for the Regex?
Thanks in advance