views:

14

answers:

1

I've tried looking for this but can't find anything:

    <asp:Login id="Login1" runat="server" 
        TitleText=""
        CreateUserText="<br />Register a new account"
        CreateUserUrl="register.aspx" 
        PasswordRecoveryText = "Forgotten password?"
        PasswordRecoveryUrl="getPass.aspx" 
        UserNameLabelText="Username:<br />"
        OnLoggingIn="OnLoggingIn"
        FailureText="Your username/password is incorrect"
        FailureTextStyle-CssClass="errorMsg" HelpPageText="" TextBoxStyle-CssClass="formBox"

        OnLoginError="OnLoginError" >
        <LoginButtonStyle CssClass="searchBtn" />
    </asp:Login>

Given that code I would like to design the login box much for createuserwizard, can this be done? So I can layout all the elements exactly as I wish.

+1  A: 

In design view of the page you can convert login control to template and layout all elements as you wish.

iburlakov