2 thoughts on “Ajax Popup Login with captcha support

  • September 29, 2011 at 1:29 pm
    Permalink

    How do you get the control to work on the checkout page here: http://www.plugables.com/Checkout/Default.aspx
    whne someone is not logged in they get the login dialog but I want to replace it like plugables did. I get error when I place the control on the one page checkout.asp error: The name ‘LoginLink’ does not exist in the current context

  • September 29, 2011 at 1:39 pm
    Permalink

    Add this to your OnePageCheckout.ascx at the top.

    1
    <%@ Register Src="~/ConLib/Plugables/AjaxPopUpLogin.ascx" TagName="PopUpLogin" TagPrefix="uc" %>

    Replace the login link panel code with this

    1
    2
    3
    <asp:PlaceHolder ID="LoginPanel" runat="server" EnableViewState="False">
            <div class="LoginMessage">If you have previously created an account, you can <uc:PopUpLogin ID="PopupLoginLink1" runat="server" LinkText="Log In" /> to retrieve your saved addresses.</div><br />
    </asp:PlaceHolder>

Leave a Reply

Your email address will not be published. Required fields are marked *