asp.net - validation control -


i've regular expression validation accept aphabets only. not accepting user input data...

use re control :

 <asp:regularexpressionvalidator id="regularexpressionvalidator1" runat="server" errormessage="please input alphabets." controltovalidate="txtinput" validationexpression="^[a-za-z]+$" height="19px" width="165px"></asp:regularexpressionvalidator> 

Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

aspxgridview - Devexpress grid - header filter does not work if column is initially hidden -

c# - How to execute a particular part of code asynchronously in a class -