LoginStatus::LogoutPageUrl Property

 

Gets or sets the URL of the logout page.

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

public:
[ThemeableAttribute(false)]
property String^ LogoutPageUrl {
	virtual String^ get();
	virtual void set(String^ value);
}

Property Value

Type: System::String^

A string containing the URL of the logout page. The default is Empty.

When the LogoutAction property is set to Redirect, the user is redirected to the URL contained in LogoutPageUrl.

If LogoutAction is set to any other value, the contents of the LogoutPageUrl property are ignored.

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

The following code example sets the LogoutPageUrl property to a logout page and the LogoutAction property to Redirect so that the user is redirected when logging out.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show: