I have a web page with several HTML links to open new windows. I know I can use 'var x = window.open (...)' to be able to control the window that has been opened.
I have a select box for the user to select a record, and a link to open that records details in a new window. When the details are entered an the submit button clicked, then the information will be saved into the databse and the window will close.
What I want to do is have the details in the select box update when the window is closed, and only if closed by pressing submit and not the close button on the bar at the top.
The information in the select will either update, or have a new entry added depending on what action the user is making.
Is there a way to do this in Javascript? Or any other language for that matter (ASP.NET?)
I have a select box for the user to select a record, and a link to open that records details in a new window. When the details are entered an the submit button clicked, then the information will be saved into the databse and the window will close.
What I want to do is have the details in the select box update when the window is closed, and only if closed by pressing submit and not the close button on the bar at the top.
The information in the select will either update, or have a new entry added depending on what action the user is making.
Is there a way to do this in Javascript? Or any other language for that matter (ASP.NET?)