Login.TextLayout Property
Specifies the position of each label relative to its associated text box for the Login control.
Assembly: System.Web (in System.Web.dll)
Property Value
Type: System.Web.UI.WebControls.LoginTextLayoutOne of the LoginTextLayout enumeration values. The default is TextOnLeft.
| Exception | Condition |
|---|---|
| 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 |
|---|---|
Places labels to the left of the associated text entry fields. | |
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.
<%@ 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 xmlns="http://www.w3.org/1999/xhtml" > <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> </td> </tr> </table> </form> </body> </html>
Available since 2.0