in reply to IIS CGI ErrorLog

Try putting this,
use CGI::Carp qw(fatalsToBrowser);
in your scripts. This will send the perl error messages to the browser, saving you from having to burrow through the server logs only to find something completely non-helpful.

PCS

UPDATE:

Use this only for debugging purposes. Turn it off (comment out) when you no longer need it.