Thanks all. Now I know what the shebang line should look like! All this information is very helpful! Here is my code. It's a simple enough script. The problem is that when I bring up the script in a browser, I see a brief glimpse of a dos window and then it does nothing. I am not seeing any HTML generated.
#!C:\perl\bin\perl.exe -w
print "Content-type: text/html\n\n";
print "<HTML>\n";
print " <HEAD>\n";
print " <TITLE>CGI Output</TITLE>\n";
print " </HEAD>\n";
print " <BODY>\n";
print " This is a response to your HTTP request \n";
print " </BODY>\n";
print "</HTML>";