This documentation is archived and is not being maintained.
Login.Orientation Property
Visual Studio 2008
Gets or sets a value that specifies the position of the elements of the Login control on the page.
Assembly: System.Web (in System.Web.dll)
'Declaration Public Overridable Property Orientation As Orientation 'Usage Dim instance As Login Dim value As Orientation value = instance.Orientation instance.Orientation = value
<asp:Login Orientation="Orientation" />
Property Value
Type: System.Web.UI.WebControls.OrientationOne the Orientation enumeration values. The default is Vertical.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | The Orientation property is not set to a valid Orientation enumeration value. |
The following code example shows the effect of changing the Orientation property.
<%@ 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 changeOrientation_Click(ByVal sender As Object, ByVal e As EventArgs) If Login1.Orientation = Orientation.Horizontal Then Login1.Orientation = Orientation.Vertical Else Login1.Orientation = Orientation.Horizontal End If End Sub </script> <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title>ASP.NET Example</title> </head> <body> <form id="form1" runat="server"> <table style="text-align:center; border-width:1"> <tr> <td> <asp:Login id="Login1" runat="server" Orientation="Vertical" CreateUserText="Create a new user..." CreateUserUrl="newUser.aspx" HelpPageText="Help logging in..." HelpPageUrl="help.aspx" PasswordRecoveryText="Recover your password..." PasswordRecoveryUrl="getPass.aspx"></asp:Login> </td> </tr> <tr> <td align="center"> <asp:Button id="changeOrientation" Text="Change Orientration" runat="Server" OnClick="changeOrientation_Click"></asp:Button> </td> </tr> </table> </form> </body> </html>
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, 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.
Show: