Problem when refreshing Parent Window

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I have a page which has some custom controls. The page works fine and
doesn't break on any number of refreshes.

There is button on the page, that starts a new child window. After doing any
thing or nothing, when the user clicks the 'close' button I want to refresh
the parent window. It works a few times than the parent window goes into a
'kind of indefinite looop'

I'm clueless as whats going on.

Any help!!!
 
Hi,
Try this code to refresh the parent window from the popup(you can include
this code in the popup in the appropriate location ,most probably in close
button of pop-up window)
window.opener.location.reload()
 
Back
Top