CreateUserWizard.EmailRegularExpressionErrorMessage Property
Gets or sets the error message displayed when the entered e-mail address does not pass the site's criteria for e-mail addresses.
Assembly: System.Web (in System.Web.dll)
'Declaration Public Overridable Property EmailRegularExpressionErrorMessage As String 'Usage Dim instance As CreateUserWizard Dim value As String value = instance.EmailRegularExpressionErrorMessage instance.EmailRegularExpressionErrorMessage = value
<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="VB"%> <!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 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.