CreateUserWizard.EmailRegularExpressionErrorMessage Property
.NET Framework 4.5
Gets or sets the error message displayed when the entered e-mail address does not pass the site's criteria for e-mail addresses.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in System.Web.dll)
<asp:CreateUserWizard EmailRegularExpressionErrorMessage="String" />
Property Value
Type: System.StringThe error message displayed when the entered e-mail address does not pass the regular expression defined in the EmailRegularExpression property. The default is "Please enter a different e-mail address." The default text for the control is localized based on the server's current locale.
The following code example assigns an error message to the EmailRegularExpressionErrorMessage property to indicate to users that the e-mail address is not in a valid format.
<%@ page language="C#"%> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script runat="server"> </script> <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title>CreateUserWizard.EmailRegularExpression sample</title> </head> <body> <form id="form1" runat="server"> <div> <asp:createuserwizard id="Createuserwizard1" runat="server" emailregularexpression='@"^([\w-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([\w-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$"' emailregularexpressionerrormessage="E-mail address must be in a valid format"> </asp:createuserwizard> </div> </form> </body> </html>
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.