dropdownlist refresh for child page

Last post 07-07-2009 11:46 PM by Gary yang - MSFT. 2 replies.

Sort Posts:

  • dropdownlist refresh for child page

    07-03-2009, 3:37 PM
    • Member
      254 point Member
    • LuizFicer
    • Member since 03-13-2009, 4:45 AM
    • Lima-Peru
    • Posts 82

     Hi Friends

    i write this post because i have a problem i open a webform whit windows.open whis page

    is for register users ,

    and i need that when i closes the child page , the dropdownlist for my parent page load again all users for pic thw new user

    All Regards.

    PSD: i dont know if i can execute a method when i close the child page from my parent page

    Dont Forget mark Answer if This Help

    Luis Antonio Cuadra Collaton
    LuizFicer - MCTS
    My Site under Construction : peruasp - NET peru

  • Re: dropdownlist refresh for child page

    07-04-2009, 12:21 AM
    • All-Star
      59,903 point All-Star
    • mudassarkhan
    • Member since 02-28-2008, 5:28 AM
    • Mumbai, India
    • Posts 10,551
    • TrustedFriends-MVPs

    LuizFicer:
    the dropdownlist for my parent page load again all users for pic thw new user
     

    Can you explain this again?

     

  • Re: dropdownlist refresh for child page

    07-07-2009, 11:46 PM
    Answer

     

    LuizFicer:
    i need that when i closes the child page , the dropdownlist for my parent page load again all users for pic thw new user

    Based on my description, it seems that you want to reload the parent page when you close the popup window with Window.Open(). If this is the case, I suggest you try to refer to the following code:

    ChildPage:

    <html xmlns="http://www.w3.org/1999/xhtml" >
    <head id="Head2" runat="server">
        <title>Untitled Page</title>
        <script type="text/javascript">
    
            function CloseWindow() {
                window.opener.location.reload();    
                window.close();
            }
        </script>
    </head>
    <body>
        <form id="form2" runat="server">
        <input id="Button1" type="button" value="button" onclick="CloseWindow()"/>
        </form>
    </body>
    </html>


     

    Gary yang - MSFT
    Microsoft Online Community Support

    Please remember to mark the replies as answers if they help and unmark them if they provide no help.
Page 1 of 1 (3 items)