I need some help with a textbox:
The textbox is only allowed to contain letters. how do I do this?
You can use regular expression validation for this and use following regular expression "^[a-zA-Z]+$"
this is the easiest way to do this.