Francisco
|
| Posted: 07/10/2002, 1:25 PM |
|
I need a screen of entrance of data that after having accepted the fields,
open a screen formatting those fields tends an impression button.
it is necessary that it is in another window.
Thankful!
Francisco Meirelles
|
|
|
 |
Nicole
|
| Posted: 07/11/2002, 12:37 AM |
|
Francisco,
do you mean you want to open new window after the form is submitted? In this case you can place JavaScript code in results page <head> section to open new window. Here is sample code:
<script language = "JavaScript">
var w = open ('', 'windowName', 'width=300,height=300,titlebar=0');
w.document.open();
w.location.href="http://www.google.com";
w.document.write('<HTML><BODY>Please wait while page is loading...<br><A HREF="javascript: window.close();">close<\/A>');
w.document.close();
</script>
|
|
|
 |
Francisco
|
| Posted: 07/11/2002, 5:42 AM |
|
yes...
after me to finish including a registration the program should be redirected for another window and to set up a report.
How to do?
If he/she has some example, he/she can send me for the e-mailfranciscomeirelles@pbh.gov.br
|
|
|
 |
|