PasswordRecovery.SuccessPageUrl Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the URL of the page to display after sending a 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 password success page. The default is Empty.
- Attributes
Examples
The following code example sets the PasswordRecovery control to redirect the user to the page defined in the SuccessPageUrl property after sending the user a new password.
<%@ page language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>ASP.NET Example</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:PasswordRecovery ID="PasswordRecovery1"
Runat="server" SuccessPageUrl="newPasswordSent.aspx" />
</div>
</form>
</body>
</html>
<%@ page language="VB" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>ASP.NET Example</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:PasswordRecovery ID="PasswordRecovery1"
Runat="server" SuccessPageUrl="newPasswordSent.aspx" />
</div>
</form>
</body>
</html>
Remarks
The SuccessPageUrl property contains the URL of the page that is displayed after a password has successfully been sent to a user.
If the SuccessPageUrl property is not null
, the user is directed to the page defined in the SuccessPageUrl property; otherwise, the page containing the PasswordRecovery control is refreshed.
This property cannot be set by themes or style sheet themes. For more information, see ThemeableAttribute and ASP.NET Themes and Skins.