Hi peoples,
I have a textbox:
<asp:TextBox
ID="TextBoxFirstName"
runat="server">
</asp:TextBox>
I need to make sure that it captures data for a first name allowing letters from a-z, A-Z and special characters like - (dash) and the space characters. The validator will block all other characters. How do I go about doing this using VB (if possible).
Cheers