http://support.microsoft.com/kb/245225
http://www.visualwin.com/Perl/
http://www.howtogeek.com/50500/how-to-i ... rver-2003/
but whenever I go to access a simple hello world program in my web browser I either get "The page cannot be found" error. I know the web server is working fine in that directory when I try to access an HTML page in the same spot it shows up fine.
here is the code I am trying to run in my browser by the way.
Code: Select all
#!C:\Perl\bin\perl.exe
use CGI qw(:standard);
print header();
print start_html();
print "test";
print end_html();
Code: Select all
#!c:perlbinperl.exe
use strict;
use CGI;
my $test = new CGI;
print $test->header(“text/html”),$test->start_html(“Perl Test”);
print $test->h1(“Perl is working!”);
print $test->end_html;
Thanks for any help