Login.LayoutTemplate Property
Gets or sets the template used to display the Login control.
Assembly: System.Web (in System.Web.dll)
[BrowsableAttribute(false)] [PersistenceModeAttribute(PersistenceMode.InnerProperty)] [TemplateContainerAttribute(typeof(Login))] public virtual ITemplate LayoutTemplate { get; set; }
Property Value
Type: System.Web.UI.ITemplateAn ITemplate that contains the template for displaying the Login control. The default value is null.
The LayoutTemplate property contains the template that defines how the Login control is displayed to the user.
The following table lists the required and optional controls used in a Login control template.
ID or command name | Control type | Required/optional |
|---|---|---|
UserName | Any control that implements IEditableTextControl, including TextBox, or a custom or third-party control. | Required |
Password | Any control that implements IEditableTextControl, including TextBox, or a custom or third-party control. | Required |
RememberMe | Optional | |
FailureText | Any control that implements ITextControl. | Optional |
Login | Any control that causes event bubbling. | Optional |
The Login control throws an HttpException exception if the layout template does not contain the required controls. No exception is thrown if you give an optional control ID to a control of the wrong type; however, the control is subsequently ignored by the Login control.
The login control can be any control that causes event bubbling, such as Button, LinkButton, or ImageButton. The control's command name property must be set to "Login".
When a template is used for the Login control, only the following properties affect the behavior of the control:
All properties inherited from WebControl. (For details, see the Login control members table.)
LayoutTemplate.
All other properties are inactive when a template is set for the Login control.
The following code example creates a template for the Login control.
Security Note
|
|---|
This example contains a text box that accepts user input, which is a potential security threat. By default, ASP.NET Web pages validate that user input does not include script or HTML elements. For more information, see Script Exploits Overview. |
<%@ 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"> </script> <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title>ASP.NET Example</title> </head> <body> <form id="form1" runat="server"> <asp:Login id="Login1" runat="server"> <LayoutTemplate> <table> <tr> <td colspan="2" align="center"> Login </td> </tr> <tr> <td colspan="2" align="center"> Enter your user name and password to log in. </td> </tr> <tr> <td> <table> <tr> <td> User name: </td> <td> <asp:TextBox id="UserName" runat="server"></asp:TextBox> <asp:requiredfieldvalidator id="UserNameRequired" runat="server" ControlToValidate="UserName" Text="*"></asp:requiredfieldvalidator> </td> </tr> <tr> <td>Password:</td> <td> <asp:TextBox id="Password" runat="server" textMode="Password"></asp:TextBox> <asp:requiredfieldvalidator id="PasswordRequired" runat="server" ControlToValidate="Password" Text="*"></asp:requiredfieldvalidator> </td> </tr> <tr> <td colspan="2"> <asp:Checkbox id="RememberMe" runat="server" Text="Remember my login"></asp:Checkbox> </td> </tr> </table> </td> <td valign="middle"> <ul> <li><a href="newAccount.aspx">Create a new account...</a></li> <li><a href="getPass.aspx">Forgot your password?</a></li> <li><a href="help.aspx">Get help logging in...</a></li> </ul> </td> </tr> <tr> <td colspan="2" align="center"> <asp:button id="Login" CommandName="Login" runat="server" Text="Login"></asp:button> </td> </tr> <tr> <td colspan="2" align="center"> <asp:Literal id="FailureText" runat="server"></asp:Literal></td> </tr> </table> </LayoutTemplate> </asp:Login> </form> </body> </html>
Available since 2.0
.jpeg?cs-save-lang=1&cs-lang=csharp)