All,
This should be a pretty simple question, but I haven't found the answer I'm still looking for.
I have a parent HTML window. When the user clicks a button in this window, he opens a child window (for example, "childA.asp")
This child window contains a form. Here is what I would like to do when the user submits this form:
- Form data is saved
- Child window closes
- Updating the parent window to display new data
How to implement this?
Should the form on childA.asp send data to another page (for example, "childB.asp") that saves the data, then calls the JavaScript function in the parent window, notifying it of the update, and then closes?
If so, how would you do it?
Thank you very much in advance.
source
share