i have a textbox in my asp page that i need to validate to allow user to input only text characters from A-Z , a-z… but with spaces allowed between words..
i have tried the following but it doesn’t work(doesn’t allow spaces)::
^[a-zA-Z]*$
can i change it to make it allow spaces???
Try this, for regular expression