Hi
How to Allow only Characters with Initials and space allow character in RegularExpressionValidator in aspx
For ex: Raja Ram Mohan Roy .A.B.Z
I need how to allow above string in my RegularExpressionValidator in aspx
what i change my ValidationExpression any one guide me
now my control this
<asp:RegularExpressionValidator ID="snly" runat="server" ErrorMessage="Only Alphabets." ForeColor="Red"
ControlToValidate="TXTEMPNAME" ValidationExpression="[a-zA-Z]"></asp:RegularExpressionValidator>
Mark as Answer if its helpful to you
Kumaraspcode2009@gmail.com