CreateUserWizard.Question Property
Assembly: System.Web (in system.web.dll)
[LocalizableAttribute(true)] [ThemeableAttribute(false)] public virtual string Question { get; set; }
/** @property */ public String get_Question () /** @property */ public void set_Question (String value)
public function get Question () : String public function set Question (value : String)
Not applicable.
Property Value
The password recovery confirmation question entered by the user. The default value is an empty string ("").The membership provider specified in the MembershipProvider property will determine whether the Question and Answer text boxes are displayed at run time. Each text box displayed on the CreateUserWizard control has a RequiredFieldValidator associated with it.
This property cannot be set by themes or style sheet themes. For more information, see ThemeableAttribute and Introduction to ASP.NET Themes.
The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see LocalizableAttribute and ASP.NET Globalization and Localization.
The following code example modifies the e-mail message in the SendingMail event to include the user's password recovery confirmation question in the message sent to new users.
<%@ Page Language="C#"%> <%@ Import namespace="Samples.AspNet.CS.Controls" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script runat="server"> private void Page_Load(object sender, EventArgs e) { Placeholder1.Controls.Add(new CustomCreateUserWizard()); } </script> <html xmlns="http://www.w3.org/1999/xhtml" > <head id="Head1" runat="server"> <title>CreateUserWizard.OnSendingMail sample</title> </head> <body> <form id="form1" runat="server"> <div> <asp:placeholder id="Placeholder1" runat="server" > </asp:placeholder> </div> </form> </body> </html> ... using System; using System.Web; using System.Web.UI.WebControls; using System.Security.Permissions; namespace Samples.AspNet.CS.Controls { [AspNetHostingPermission (System.Security.Permissions.SecurityAction.Demand, Level = AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission (System.Security.Permissions.SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)] public class CustomCreateUserWizard : CreateUserWizard { public CustomCreateUserWizard() { this.MailDefinition.BodyFileName = "MailFile.txt"; this.MailDefinition.From = "userAdmin@your.site.name.here"; } protected override void OnSendingMail(MailMessageEventArgs e) { e.Message.Subject = "New Web site user."; // Replace placeholder text in message body with information // provided by the user. e.Message.Body.Replace("<%PasswordQuestion%>",this.Question); e.Message.Body.Replace("<%PasswordAnswer%>", this.Answer); base.OnSendingMail(e); } } }