in reply to PERL, JAVA and HTML
The first CGI - which is opened as a child window, opens but the parent get's cleared. Then when the submit is completed, the parent neeeds to be reloaded. Hope that clears things up.(HTML) <a href="www.example.com/cgi-bin/openwindow.cgi"> ...User clicks link and starts CGI below (CGI) - Open Window ...basic PERL header stuff here.. print "Content-type: text/html\n\n"; print <<HMTL <scirpt> window.open('security_modify_information.htm' ,'mywindow','width=400,height=550,left=30 </script> JAVA (HTML - Security_modify_information.htm) This is a form, upon submit, it checks the form fields and upon comple +tion, it does the following: <script> window.close (); </script>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: PERL, JAVA and HTML
by mfriedman (Monk) on Aug 07, 2002 at 19:26 UTC | |
by OEMike (Novice) on Aug 07, 2002 at 20:17 UTC |