|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
How can I get PERL to open a new browser window that has the attributes I want. ie no address bar, no button bar, just the bare frame. I can do it with JavaScript, but can PERL do it?
------------------ Michael |
|
#2
|
|||
|
|||
|
Only by combining JavaScript and Perl. Perl it's self is not client based at all... JavaScript is.
|
|
#3
|
|||
|
|||
|
Try this..
print "Window-target: frame_name_heren"; print "Content-type: text/htmlnn"; print "<html>n"; print "<body>n"; ... put your html attributes with no address bar, no button bar here print "</body>n"; print "</html>n"; note, the "frame_name_here", if such frame doesn't exist, it might open a new window. I haven't tested this myself, but you can take a try. Also check out this page: http://www.devshed.com/Talk/Forums/Forum6/HTML/000213.html An easier solution is if there is a form, you can specify the target within your form tag: <form method="POST" action="script.pl" target="frame_name"> |
|
#4
|
|||
|
|||
|
Thanx for the info I will try that out..
Jeff URL <BLOCKQUOTE><font size="1" face="Verdana,Arial,Helvetica">quote:</font><HR>Originally posted by freebsd: Try this.. print "Window-target: frame_name_heren"; print "Content-type: text/htmlnn"; print "<html>n"; print "<body>n"; ... put your html attributes with no address bar, no button bar here print "</body>n"; print "</html>n"; note, the "frame_name_here", if such frame doesn't exist, it might open a new window. I haven't tested this myself, but you can take a try. Also check out this page: http://www.devshed.com/Talk/Forums/Forum6/HTML/000213.html An easier solution is if there is a form, you can specify the target within your form tag: <form method="POST" action="script.pl" target="frame_name">[/quote] |
![]() |
| Viewing: Dev Shed Forums > Programming Languages > Perl Programming > Browser attributes |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|