Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
.NET Framework 3.5
Login Class
Login Properties
 FailureAction Property
This page is specific to
Microsoft Visual Studio 2008/.NET Framework 3.5

Other versions are also available for the following:
.NET Framework Class Library
Login..::.FailureAction Property

Updated: November 2007

Gets or sets the action that occurs when a login attempt fails.

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

Visual Basic (Declaration)
<ThemeableAttribute(False)> _
Public Overridable Property FailureAction As LoginFailureAction
Visual Basic (Usage)
Dim instance As Login
Dim value As LoginFailureAction

value = instance.FailureAction

instance.FailureAction = value
C#
[ThemeableAttribute(false)]
public virtual LoginFailureAction FailureAction { get; set; }
Visual C++
[ThemeableAttribute(false)]
public:
virtual property LoginFailureAction FailureAction {
    LoginFailureAction get ();
    void set (LoginFailureAction value);
}
J#
/** @property */
/** @attribute ThemeableAttribute(false) */
public LoginFailureAction get_FailureAction()
/** @property */
/** @attribute ThemeableAttribute(false) */
public  void set_FailureAction(LoginFailureAction value)
JScript
public function get FailureAction () : LoginFailureAction
public function set FailureAction (value : LoginFailureAction)
ASP.NET
<asp:Login FailureAction="LoginFailureAction" />

Property Value

Type: System.Web.UI.WebControls..::.LoginFailureAction

One of the LoginFailureAction enumeration values. The default is Refresh.

ExceptionCondition
ArgumentOutOfRangeException

The selected value is not one of the LoginFailureAction enumeration values.

The FailureAction property defines the behavior of the Login control when the user does not successfully log in to the Web site.

The default behavior reloads the page and displays the contents of the FailureText property to alert the user that the login attempt failed.

When FailureAction is set to RedirectToLoginPage, the user is redirected to the login page defined in the Web.config file.

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

The following code example shows how to set the FailureAction property both declaratively and in code.

Visual Basic
<%@ Page Language="VB" AutoEventWireup="False"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<script runat="server">
Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
    Login1.FailureAction = LoginFailureAction.RedirectToLoginPage
End Sub

</script>

<html  >
    <head runat="server">
    <title>ASP.NET Example</title>
</head>
<body>
        <form id="form1" runat="server">
            <asp:Login id="Login1" runat="server" FailureAction="RedirectToLoginPage"></asp:Login>
        </form>
    </body>
</html>

C#
<%@ Page Language="C#" AutoEventWireup="False"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<script runat="server">
void Page_Load(Object sender, EventArgs e)
{
    Login1.FailureAction = LoginFailureAction.RedirectToLoginPage;
}

</script>

<html  >
    <head runat="server">
    <title>ASP.NET Example</title>
</head>
<body>
        <form id="form1" runat="server">
            <asp:Login id="Login1" runat="server" FailureAction="RedirectToLoginPage"></asp:Login>
        </form>
    </body>
</html>

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

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0, 2.0
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2008 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Page view tracker