Mar 31, 2004 #1 Alphabin Programmer Dec 8, 2002 119 CA Since I'm generating HTML output with print "Content-type: text/html\n\n" the print "Location: ..." function is not an option for me. I know there's other ways to do so... Any input would be appreaciated..
Since I'm generating HTML output with print "Content-type: text/html\n\n" the print "Location: ..." function is not an option for me. I know there's other ways to do so... Any input would be appreaciated..
Mar 31, 2004 1 #2 duncdude Programmer Jul 28, 2003 1,979 GB #!/usr/bin/perl print <<EOF; Content-type: text/html <script language="javascript"> <!-- location.replace("http://www.apple.com/uk/"); --> </script> EOF Kind Regards Duncan Upvote 0 Downvote
#!/usr/bin/perl print <<EOF; Content-type: text/html <script language="javascript"> <!-- location.replace("http://www.apple.com/uk/"); --> </script> EOF Kind Regards Duncan
Mar 31, 2004 Thread starter #3 Alphabin Programmer Dec 8, 2002 119 CA At first I wanted to avoid using JScripts, but it does the trick. Thank you Duncan Upvote 0 Downvote
Mar 31, 2004 #4 duncdude Programmer Jul 28, 2003 1,979 GB cheers! Kind Regards Duncan Upvote 0 Downvote