LoginTextLayout Enumeration
.NET Framework 2.0
Note: This enumeration is new in the .NET Framework version 2.0.
Specifies the position of labels relative to their associated text boxes for the Login control.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
The following code example demonstrates using the LoginTextLayout enumeration to set the TextLayout property on the 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 changeOrientation_Click(object sender, EventArgs e) { if (Login1.Orientation == Orientation.Vertical) Login1.Orientation = Orientation.Horizontal; else Login1.Orientation = Orientation.Vertical; } void changeTextLayout_Click(object sender, EventArgs e) { if (Login1.TextLayout == LoginTextLayout.TextOnLeft) Login1.TextLayout = LoginTextLayout.TextOnTop; else Login1.TextLayout = LoginTextLayout.TextOnLeft; } </SCRIPT> <HTML> <BODY> <FORM runat="server"> <table 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> <asp:Button id="changeOrientation" runat="server" Text="Change Orientation" onClick="changeOrientation_Click"></asp:Button> </td> </tr> </table> </FORM> </BODY> </HTML>
Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Community Additions
ADD
Show: