how to refresh an existing webfrom from another

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

Guest

Hello
I have two questions
1. I have a webform A, which by clicking on certain control, i open in a new window a webform B
I want, when the webform B is closed, to refresh (Page_Load ? ) the webform A
How can I achieve this

2. How do i disable the X (close) button in the browser upper right corner, or how do i catch the event of it

Thanks in advance for any help
 
When you close webformB write the following client scrip

window.opener.document.forms[0].submit()

Thanx

Nimish
 
Back
Top