L
lg
I've asked this on a html forum but I'll ask it here also.
I have a counter file on my index page which is like below.
Snippet from index.html:
<script type="text/perl" SRC="http://www.blahblah.com/counter.pl"> </script>
The script is is a perl file which is processed by the server. Is it legal? Will
my counter work (be run as usual)?
Below runs OK too, but I get a "done, but with errors on the page"
<script type="text/javascript" SRC="http://www.blahblah.com/counter.pl">
</script>
What I am trying to do is get rid of the error message and have the counter.pl
execute. Since the server (not the client browser) is doing the running of the
counter.pl I want to know if "<script type="text/perl" SRC="http://.." is
otherwise valid. I could just put the line there and see if I get hits, but I
don't want to find out six months later that it while it does work on many
browsers it does not work on not-so-common-browser and the browser simply quits
interpreting the html on the file and issues a 404 or similar message.
I have a counter file on my index page which is like below.
Snippet from index.html:
<script type="text/perl" SRC="http://www.blahblah.com/counter.pl"> </script>
The script is is a perl file which is processed by the server. Is it legal? Will
my counter work (be run as usual)?
Below runs OK too, but I get a "done, but with errors on the page"
<script type="text/javascript" SRC="http://www.blahblah.com/counter.pl">
</script>
What I am trying to do is get rid of the error message and have the counter.pl
execute. Since the server (not the client browser) is doing the running of the
counter.pl I want to know if "<script type="text/perl" SRC="http://.." is
otherwise valid. I could just put the line there and see if I get hits, but I
don't want to find out six months later that it while it does work on many
browsers it does not work on not-so-common-browser and the browser simply quits
interpreting the html on the file and issues a 404 or similar message.