RoundedCornersExtender NOT working with Login control

Last post 06-27-2007 6:50 PM by zaladane. 8 replies.

Sort Posts:

  • RoundedCornersExtender NOT working with Login control

    05-31-2007, 3:09 PM
    • Member
      50 point Member
    • dotcarlisle
    • Member since 06-21-2006, 3:37 PM
    • Posts 44

    When the page renders the login control exists for a brief millisecond and then it's gone.  Any ideas?  Does this extender just not work woth the Login control?

     

    <cc1:RoundedCornersExtender ID="RoundedCornersExtender1" 
                                BehaviorID="RoundedCornersBehaviorExtender1"
                                runat="server" 
                                TargetControlID="CarrierLogin"
                                Radius="6"
                                Corners="All" />
    
     
    MACHOEARTH
    MACHOEARTH.com
    jc@machoearth.com
  • Re: RoundedCornersExtender NOT working with Login control

    06-05-2007, 11:16 PM
    Answer

     Hi,

    I think it has something to do with the login control is rendered in a table. You can put the login control in a panel and use the panel as the target control .

    Hope this helps. 

  • Re: RoundedCornersExtender NOT working with Login control

    06-08-2007, 3:40 PM
    • Member
      50 point Member
    • dotcarlisle
    • Member since 06-21-2006, 3:37 PM
    • Posts 44

       Post deleted.

    MACHOEARTH
    MACHOEARTH.com
    jc@machoearth.com
  • Re: RoundedCornersExtender NOT working with Login control

    06-27-2007, 4:33 PM
    • Member
      677 point Member
    • rmdw
    • Member since 03-14-2005, 11:03 PM
    • Vancouver, BC, Canada
    • Posts 883

    Ummm, sort of.  But what I would like is for the rounded corners to look like this: https://login.yahoo.com/config/login?.src=fpctx&.done=http://www.yahoo.com

    Can this be achieved with the RoundedCornersExtender?

     

    Robert W.
     

    Robert Werner
    Vancouver, BC
    Technical Blog
    Pocket Pollster
  • Re: RoundedCornersExtender NOT working with Login control

    06-27-2007, 5:11 PM
    • Participant
      850 point Participant
    • zaladane
    • Member since 06-19-2007, 2:44 AM
    • California
    • Posts 194

    Hello,

    I saw it the other day and was able to reproduce the effect after putting the Login Control in a Panel and Rouding the Panel corners. it works pretty good and cost ... only a panel .

     

    Still in search of the far side.
    --------------------------------
    A code snippet may help you, but a reference to the doc will teach you something for later...Don't just try to solve somebody's problem with a snippet, teach him how to solve it.
  • Re: RoundedCornersExtender NOT working with Login control

    06-27-2007, 5:19 PM
    • Member
      677 point Member
    • rmdw
    • Member since 03-14-2005, 11:03 PM
    • Vancouver, BC, Canada
    • Posts 883

    I sense we're perhaps talking about two different things.  What I want is a white or light coloured background and a thin black line as a border.  Then I want the RoundedCornersExtender to round that.  I cannot get this to work.  Could you point me to some sample code?

    Robert 

    Robert Werner
    Vancouver, BC
    Technical Blog
    Pocket Pollster
  • Re: RoundedCornersExtender NOT working with Login control

    06-27-2007, 5:59 PM
    • Participant
      850 point Participant
    • zaladane
    • Member since 06-19-2007, 2:44 AM
    • California
    • Posts 194

    well , if we are talking about the same login page on yahoo, here is my code.

    <%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
       <title>Untitled Page</title>
    </head>
    <body>
       <form id="form1" runat="server">
          <asp:ScriptManager runat="server" ID="ScriptmanagerTest">
          </asp:ScriptManager>
          <div style="padding: 20px; text-align: center">
             <asp:Panel runat="server" ID="PanelTest" BackColor="#f5f7f7" Width="300px">
                <asp:Login runat="server" ID="roundedLogIn">
                </asp:Login>
             </asp:Panel>
             <cc1:RoundedCornersExtender ID="RoundedCornersExtender1" runat="server" TargetControlID="PanelTest"
                BorderColor="black" Radius="4">
             </cc1:RoundedCornersExtender>
          </div>
       </form>
    </body>
    </html>
     
    Still in search of the far side.
    --------------------------------
    A code snippet may help you, but a reference to the doc will teach you something for later...Don't just try to solve somebody's problem with a snippet, teach him how to solve it.
  • Re: RoundedCornersExtender NOT working with Login control

    06-27-2007, 6:43 PM
    • Member
      677 point Member
    • rmdw
    • Member since 03-14-2005, 11:03 PM
    • Vancouver, BC, Canada
    • Posts 883

    Hmmm, I'm not sure what I did wrong but your way works perfectly.  Thank you!!!

    Robert
     

    Robert Werner
    Vancouver, BC
    Technical Blog
    Pocket Pollster
  • Re: RoundedCornersExtender NOT working with Login control

    06-27-2007, 6:50 PM
    • Participant
      850 point Participant
    • zaladane
    • Member since 06-19-2007, 2:44 AM
    • California
    • Posts 194

    Glad i could help!

    Still in search of the far side.
    --------------------------------
    A code snippet may help you, but a reference to the doc will teach you something for later...Don't just try to solve somebody's problem with a snippet, teach him how to solve it.
Page 1 of 1 (9 items)