Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 6 of 6

Thread: ModalPopup on Create Account button

  1. #1
    donato is offline Senior Member
    Join Date
    Jun 2009
    Posts
    215

    Default ModalPopup on Create Account button

    Hello,

    I would like to have a modalpopup when someone presses the "Create Account" button. I have a trigger processing some stuff and would like to let the customer know - with a little processing image.

    I tried a using the ModalPopup Extender as part of the AJAX Control Toolkit, however, it did not work. Could someone help me with this please?

    Cheers,

    D

  2. #2
    donato is offline Senior Member
    Join Date
    Jun 2009
    Posts
    215

    Default

    Actually, it doesn't have to be a modal popup. I just want to be able to show some sort of message letting them know it is processing. I have tried .net server controls, such as a panel and a label. And then specifying it to be visible within the CreateAccount() method, but that doesn't work either.

    Any help would be greatly appreciated...

    Cheers,

    D

  3. #3
    mmcgeachy is offline Senior Member
    Join Date
    Sep 2008
    Posts
    174

    Default

    To me it sounds like using an ajax update panel is what you are after. http://www.dotnetcurry.com/ShowArticle.aspx?ID=227 gives some examples on how to do this.

  4. #4
    webopius is offline Senior Member
    Join Date
    Nov 2008
    Location
    London, UK
    Posts
    440

    Default

    ...or an HTML-based popup using JQuery.

  5. #5
    donato is offline Senior Member
    Join Date
    Jun 2009
    Posts
    215

    Default

    Quote Originally Posted by webopius View Post
    ...or an HTML-based popup using JQuery.
    I would LOVE to use JQuery or something, but the Create Account button is already using
    Code:
    OnClientClick="Page_ValidationActive=true;"
    And of course it is using
    Code:
    OnClick="btnContinueCheckout_Click"

  6. #6
    donato is offline Senior Member
    Join Date
    Jun 2009
    Posts
    215

    Default

    Quote Originally Posted by mmcgeachy View Post
    To me it sounds like using an ajax update panel is what you are after. http://www.dotnetcurry.com/ShowArticle.aspx?ID=227 gives some examples on how to do this.
    Do I need to wrap the whole page in an update panel?