Guys,
I have a form page which, when submitted, opens a pop-up window informing the user that the input is being processed, blah, blah.
The form input gets sent to an ASP page(trackorder1.asp). The first thing that the ASP page does is create a reference to the open windown using window.open and when the ASP program has completed processing, it closes the open window. The user then makes a selection from this new page and submits to trackorder2.asp. Now my problem is that if the user uses the back button to make a different selection trackorder1.asp tries to generate a reference to a window that doesn't exist so it open a blank pop-up window.
So after all that my question is: is it possible to check if a window is open so that I can do something like
if (window is open) {
generate reference to window
} Mise Le Meas,
Mighty
I have a form page which, when submitted, opens a pop-up window informing the user that the input is being processed, blah, blah.
The form input gets sent to an ASP page(trackorder1.asp). The first thing that the ASP page does is create a reference to the open windown using window.open and when the ASP program has completed processing, it closes the open window. The user then makes a selection from this new page and submits to trackorder2.asp. Now my problem is that if the user uses the back button to make a different selection trackorder1.asp tries to generate a reference to a window that doesn't exist so it open a blank pop-up window.
So after all that my question is: is it possible to check if a window is open so that I can do something like
if (window is open) {
generate reference to window
} Mise Le Meas,
Mighty