Hi
I'm using a simple popup window to have users confirm their form submission. How can I make sure that they can't return to the form page as long as the popup hasn't been closed?
This is the code to create the popup :
<SCRIPT LANGUAGE="VBScript">
Dim windowHandle
function myConfirm()
set windowHandle = Window.open("Confirm.htm","","width=250,height=120"
if not windowHandle.opener then
set windowHandle.opener = self
end if
end function
</SCRIPT>
This function is called through an "onClick" event on a fake submit button. Can I "disable" the form page as long as the window is open?
Thanks.
Tim
I'm using a simple popup window to have users confirm their form submission. How can I make sure that they can't return to the form page as long as the popup hasn't been closed?
This is the code to create the popup :
<SCRIPT LANGUAGE="VBScript">
Dim windowHandle
function myConfirm()
set windowHandle = Window.open("Confirm.htm","","width=250,height=120"
if not windowHandle.opener then
set windowHandle.opener = self
end if
end function
</SCRIPT>
This function is called through an "onClick" event on a fake submit button. Can I "disable" the form page as long as the window is open?
Thanks.
Tim