Everton1Blue
Technical User
Hello
Can I ask please about email verification in my ASP.NET (VB.NET) project.
I have a form with this in my contact form:
I am getting two green underlines under <ValidationExpression and </asp:ValidationExpression>
It says ValidationExpression is missing the > from the start tag and </asp:ValidationExpression> has no matching start tag.
Thanks for any help.
Can I ask please about email verification in my ASP.NET (VB.NET) project.
I have a form with this in my contact form:
Code:
<p><asp:Label ID="Email" runat="server" Text="Email"></asp:Label>
<asp:TextBox ID="your_email" runat="server"></asp:TextBox></p><br />
<asp:RequiredFieldValidator Display="Dynamic" ID="RequiredFieldValidator2" runat="server"
ErrorMessage="*" ControlToValidate="your_email" ForeColor="#FF6666"></asp:RequiredFieldValidator>
<asp:RegularExpressionValidator ID="regexpEmail" runat="server" ErrorMessage="Please complete the Email field"
ValidationGroup="vgSubmit" ControlToValidate="your_email"></asp:RegularExpressionValidator>
<ValidationExpression="[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@
(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?"</asp:ValidationExpression>
I am getting two green underlines under <ValidationExpression and </asp:ValidationExpression>
It says ValidationExpression is missing the > from the start tag and </asp:ValidationExpression> has no matching start tag.
Thanks for any help.