TheConeHead
Programmer
How would I make a validator to make sure a textbox is laid out: string, string
(two string separated by ", "
(two string separated by ", "
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<asp:RegularExpressionValidator id="RegularExpressionValidator1" runat="server"
ControlToValidate="TextBox1"
ValidationExpression="[red]you need to put your regular expression here[/red]"
Display="Static">
^[a-zA-Z][\w\.-]*[a-zA-Z0-9],[a-zA-Z][\w\.-]*[a-zA-Z0-9]