in reply to I can't get Perl to run on MS-IIS! Help!

Here's some random ideas, although this is hard to discuss without seeing the server itself. This is about the minimal code you need for the CGI to work.
print "Content-Type: text/html\n"; #Tell browser it's html print "\n"; #IMPORTANT-End of header. print "Hello World"; #Output

It works on my server (IIS4/Activestate), so if it doesn't work on yours, then you know the problem is in configuration. Otherwise you should post your code.

Oh, and this is named HelloWorld.cgi on my server. See if the .cgi extention works (it may need to be in the cgi-bin directory, I forget)

-Lexicon

Replies are listed 'Best First'.
Re tilly (2): I can't get Perl to run on MS-IIS! Help!
by tilly (Archbishop) on Jan 23, 2001 at 07:19 UTC
    Did you meant text/plain?
    print "Content-type: text/plain\n\nHello World";
    is about as minimal as it gets.