|
hi i'm having this problem with javascript & i wish any of you would help. i'm having that webpage "Default.aspx" in which i'm calling up another form using: Var searchWindow = window.open("Search.aspx","status=no,toolbar=no,location=no');
then i'm changing the default URL of the default page from the new child window (the "search.aspx" page) using : window.opener.location.replace("default.aspx?po0=" + po0 + "&pr0=" + pr0 + "&po1=" + po1 + "&pr1=" + pr1 + "&po2=" + po2 + "&pr2=" + pr2 + "&Search=" + searchTxt.value);
now i want to access the child page (the "search.aspx") from the main form (the "Default.aspx") but since the "Default.aspx" location has changed, then i can't access the "search.aspx" using : window.opener.searchWindow
so is there any way to call that opened form from the new default page?
thanks
|