Hi
I have below condition but it is not accepting numeric values. It is accepting Alphabet & only Space.
<div class="col-lg-6 col-md-6 col-sm-12"> <div class="form-group"> <label>Swift Code</label> <asp:TextBox ID="txtSwiftCode" MaxLength="25" class="form-control alpha" pattern="[a-zA-Z0-9\s]*" title="Valid characters: Alphabets,Numeric and Space." placeholder="Swift Code" runat="server"></asp:TextBox> </div> </div>
Thanks