Reload window

  • Thread starter Thread starter Grey
  • Start date Start date
G

Grey

I have one main window and one dialog window. Is it possible to reload the content of main window which is triggered from one button on dialog window.

Million Thanks
 
Hi, Gre

If this dialog window is opened from the main window, you could do it in javascript
<script language="javascript" for="button" event="onclick"
window.opener.navigate(window.opener.location)
</script

Bin Song, MCP
 
Back
Top