Hi
ValidationExpression for A - z and 0 - 9 except special characters and allow single space
Reference article of
i have create a following code
<asp:TextBox runat="server" ID="txtASP"></asp:TextBox>
<asp:RegularExpressionValidator runat="server" ID="RegularExpression1" ControlToValidate="txtASP"
ErrorMessage="#%&{}\<>*?/ $':@+`|=" not allowed" ValidationExpression="[^#%&{}\\<>*?/\s$':@+`|="]*$">
</asp:RegularExpressionValidator>
<br />
<asp:Button runat="server" ID="btnSave" Text="SAVE" />
so i want to allow 'space', please advise me.
Thanking you
samsmuthu