Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
.NET Framework 3.5
Login Class
Login Properties
 TextLayout 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..::.TextLayout Property

Updated: November 2007

Specifies the position of each label relative to its associated text box for the Login control.

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

Visual Basic (Declaration)
Public Overridable Property TextLayout As LoginTextLayout
Visual Basic (Usage)
Dim instance As Login
Dim value As LoginTextLayout

value = instance.TextLayout

instance.TextLayout = value
C#
public virtual LoginTextLayout TextLayout { get; set; }
Visual C++
public:
virtual property LoginTextLayout TextLayout {
    LoginTextLayout get ();
    void set (LoginTextLayout value);
}
J#
/** @property */
public LoginTextLayout get_TextLayout()
/** @property */
public  void set_TextLayout(LoginTextLayout value)
JScript
public function get TextLayout () : LoginTextLayout
public function set TextLayout (value : LoginTextLayout)
ASP.NET
<asp:Login TextLayout="LoginTextLayout" />

Property Value

Type: System.Web.UI.WebControls..::.LoginTextLayout

One of the LoginTextLayout enumeration values. The default is TextOnLeft.

ExceptionCondition
ArgumentOutOfRangeException

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

You can use the TextLayout property to specify the position of labels relative to their associated text boxes for the Login control. This property is set using one of the LoginTextLayout enumeration values. The following table lists the possible values.

LoginTextLayout value

Description

TextOnLeft

Places labels to the left of the associated text entry fields.

TextOnTop

Places labels above the associated text entry fields.

The following code example demonstrates using the LoginTextLayout enumeration to set the TextLayout property of a Login control.

Visual Basic
<%@ Page Language="VB" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<script runat="server">

  Sub ChangeTextLayout_Click(sender as Object, e as EventArgs)

    If Login1.TextLayout = LoginTextLayout.TextOnLeft Then

      Login1.TextLayout = LoginTextLayout.TextOnTop

    Else

      Login1.TextLayout = LoginTextLayout.TextOnLeft

    End If

  End Sub

</script>

<html  >
  <head runat="server">
    <title>TextLayout Example</title>
</head>
<body>
    <form id="Form1" runat="server">
    <h3>TextLayout Example</h3>
    <table style="text-align:center"
        border="1">
        <tr>
          <td align="center">
            <asp:Login id="Login1" 
              runat="server"
              orientation="Vertical" 
              textlayout="TextOnLeft">
            </asp:Login>
          </td>
        </tr>
        <tr>
          <td align="center">
            <asp:Button id="changeTextLayout" 
              runat="Server" 
              text="Change Text Layout" 
              onclick="ChangeTextLayout_Click" >
            </asp:Button>&nbsp;
          </td>
        </tr>
      </table>
    </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 ChangeTextLayout_Click(object sender, EventArgs e)
  {
      if (Login1.TextLayout == LoginTextLayout.TextOnLeft)
      {
          Login1.TextLayout = LoginTextLayout.TextOnTop;
      }
      else
      {
          Login1.TextLayout = LoginTextLayout.TextOnLeft;
      }
  }

</script>

<html  >
  <head runat="server">
    <title>TextLayout Example</title>
</head>
<body>
    <form id="Form1" runat="server">
    <h3>TextLayout Example</h3>
    <table style="text-align:center"
        border="1">
        <tr>
          <td align="center">
            <asp:Login id="Login1" 
              runat="server"
              orientation="Vertical" 
              textlayout="TextOnLeft">
            </asp:Login>
          </td>
        </tr>
        <tr>
          <td align="center">
            <asp:Button id="changeTextLayout" 
              runat="Server" 
              text="Change Text Layout" 
              onclick="ChangeTextLayout_Click" >
            </asp:Button>&nbsp;
          </td>
        </tr>
      </table>
    </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