CreateUserWizard.RequireEmail Property

Gets or sets a value indicating whether an e-mail address is required for the Web site user.

Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)

[ThemeableAttribute(false)] 
public:
virtual property bool RequireEmail {
	bool get ();
	void set (bool value);
}
/** @property */
public boolean get_RequireEmail ()

/** @property */
public void set_RequireEmail (boolean value)

public function get RequireEmail () : boolean

public function set RequireEmail (value : boolean)

Not applicable.

Property Value

true if an e-mail address is required; otherwise, false. The default value is true.

When the RequireEmail property is true, the CreateUserWizard will display a text box and an associated label for the user to enter an e-mail address. If the user does not enter an e-mail address, the EmailRequiredErrorMessage property will display an error message.

If the RequireEmail property is set to true and you are using templated content, the Email control is required and the CreateUserWizard throws an exception if the Email control is not found or is of the wrong type. If RequireEmail is set to false, no exception is thrown if the Email is not found. If it is of the wrong type, it is ignored.

NoteNote:

If the membership provider specified in the MembershipProvider property requires a unique e-mail address for new users, you must set the RequireEmail property to true so that the UI for entering an e-mail address is displayed. Otherwise, the user will see the EmailRequiredErrorMessage but have no way to enter an e-mail address.

This property cannot be set by themes or style sheet themes. For more information, see ThemeableAttribute and Introduction to ASP.NET Themes.

Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0

Community Additions

ADD
Show: