Reputation: 2760
<asp:TextBox ID="txt_PhNo" CssClass="txt_box" runat="server" />
<asp:RequiredFieldValidator ID="RequiredFieldValidator5" ControlToValidate="txt_PhNo" runat="server" ValidationGroup="ORG"
CssClass="Error" Text="*Organisation Name is a required field."></asp:RequiredFieldValidator
How to add validation for phone number so that it allows + () and space, If I validate with numbers then + () and space are not allowed how to do that. Thanks
Upvotes: 0
Views: 5409
Reputation: 6152
Investigate the RegularExpressionValidator, perhaps in conjunction with A comprehensive regex for phone number validation
Upvotes: 3