ChangePassword.SuccessPageUrl Property

Definition

Gets or sets the URL of the page that is shown to users after they have changed their password successfully.

public:
 virtual property System::String ^ SuccessPageUrl { System::String ^ get(); void set(System::String ^ value); };
[System.Web.UI.Themeable(false)]
public virtual string SuccessPageUrl { get; set; }
[<System.Web.UI.Themeable(false)>]
member this.SuccessPageUrl : string with get, set
Public Overridable Property SuccessPageUrl As String

Property Value

The URL of the destination page after the password is changed. The default is Empty.

Attributes

Remarks

Set the SuccessPageUrl property when you want users to be redirected to a specific page of your Web site after successfully changing their passwords. If the SuccessPageUrl property is not set (set is the default), the page containing the ChangePassword control is refreshed and the SuccessText property is displayed. If the SuccessPageUrl property is set, the Success view is not displayed.

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

Applies to

See also