reload the main page from Iframe

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • nitarag
    New Member
    • Oct 2008
    • 2

    reload the main page from Iframe

    I have a login.aspx page where I used login usercontrol in that page and now in master page I have iframe which src points to this login.aspx
    now when i want to sigin in the iframe it is refreshing the iframe only I want to reload the whole page.
    In the login.aspx I have links for new register,forgot password etc and with help of java Script I managed to refresh them on the content page

    I added the below in login.aspx

    function Refreshregister ()
    {
    window.parent.l ocation.href = "/web/Member/Register.aspx";

    }


    <td class="text"><a id="A1" href="javascrip t:Refreshregist er()" runat="server"> Register</a></td>


    please help me in reloading the whole page when signin and logout
Working...